快速排序算法
摘要:快排,从小到大排序 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
		
		posted @ 2014-05-28 13:06
		
		posted @ 2014-05-04 16:05