摘要: [Algo] 快速排序 1. 经典随机快排 // 1. 经典随机快排 void swapByIndex(vector<int> &v, int x, int y) { int tmp = v[x]; v[x] = v[y]; v[y] = tmp; } pair<int, int> partitio 阅读全文
posted @ 2024-12-07 13:53 yaoguyuan 阅读(6) 评论(0) 推荐(0) 编辑