摘要: #include <iostream> using namespace std; const int N = 100010; int q[N]; void quick_sort(int q[], int l, int r) { if (l >= r) return; int i = l - 1, j = r + 1, x = q[l + r >> 1]; while (i < j) { do i 阅读全文
posted @ 2019-10-29 15:59 Gold_stein 阅读(164) 评论(0) 推荐(0) 编辑