#includeusing namespace std; void exchange(int &a,int &b) { int temp; temp=a; a=b; b=temp; } int partition(int *a,int p,int r) { int x=a[r]; int i=p-1; for (int j=p;j
本文共 270 字,大约阅读时间需要 1 分钟。
#includeusing namespace std; void exchange(int &a,int &b) { int temp; temp=a; a=b; b=temp; } int partition(int *a,int p,int r) { int x=a[r]; int i=p-1; for (int j=p;j
转载于:https://www.cnblogs.com/tiandsp/archive/2012/02/18/2357622.html