C++快速排序
阿新 • • 發佈:2021-02-08
技術標籤:筆記
摸魚人重新開始
#include <bits/stdc++.h>
using namespace std;
const int maxn = 100000 + 5;
int q[maxn];
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)
{
while (q[++ i] < x);
while (q[-- j] > x);
if (i < j) swap (q[i], q[j]);
}
quick_sort(q, l, j);
quick_sort(q, j + 1, r);
}
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n;
cin >> n;
for (int i = 0; i < n; i ++)
{
cin >> q[i];
}
quick_sort(q, 0, n - 1);
for (int i = 0; i < n; i ++)
{
cout << q[i] << ' ';
}
return 0;
}