摘要:
#include <iostream>using namespace std;void print(int a[], int n){ for(int j= 0; j<n; j++){ cout<<a[j] <<" "; } cout<<endl; }int partition(int a[], int low, int high){ int privotval = a[low]; while (low < high) { while (low < high & privotval < a[hig 阅读全文