riverphoenix

导航

 

2012年3月19日

摘要: #include<iostream>#include<algorithm>using namespace std;int partition(int* &a,int p,int r){ int x=a[r]; int i=p-1; for(int j=p;p<=r-1;p++) { if(a[j]<=x) { i=i+1; swap(a[i],a[j]); } } swap(a[i+1],a[r]); return i+1;}void quicksort(int* &... 阅读全文
posted @ 2012-03-19 20:58 riverphoenix 阅读(180) 评论(0) 推荐(0) 编辑