2014年5月28日

快速排序算法

摘要: 快排,从小到大排序 1 void quicksort(int a[],int low,int high) 2 { 3 int i=low; 4 int j=high; 5 int temp=a[i]; 6 if(i=temp&&i<j) j--; ... 阅读全文

posted @ 2014-05-28 13:06 >_< 阅读(163) 评论(0) 推荐(0) 编辑

导航