1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| #include <iostream>
using namespace std;
int n; const int N = 1e6 + 10; int nums[N];
int partition(int nums[], int low, int high) { int x = nums[low]; while(low < high) { while(low < high && nums[high] >= x) --high; nums[low] = nums[high]; while(low < high && nums[low] <= x) ++low; nums[high] = nums[low]; } nums[low] = x; return low; }
void quick_sort(int nums[], int low, int high) { if(low < high) { int pivotpos = partition(nums, low, high); quick_sort(nums, low, pivotpos - 1); quick_sort(nums, pivotpos + 1, high); } }
int main() { scanf("%d", &n); for(int i = 0; i < n; i++) scanf("%d", &nums[i]); quick_sort(nums, 0, n - 1); for(int i = 0; i < n; i++) printf("%d ", nums[i]); return 0; }
|