快速排序(在数组两边放置两个指针)
#include<iostream>#include<vector>using namespace std;void QuickSort(vector<int> &a,int low,int high){ if(low>high) return; int i=low,j=high; int temp=a[low]; wh...