摘要:/***quick sort**/#include<stdio.h>void swap(int * a,int * b){int tmp;tmp = *a;*a = * b;*b = tmp;}void quickSort(int array[],int start,int end){int i,j;if(start < end){i = start;j = end + 1;wh...
阅读全文
posted @ 2010-10-21 23:49
浙公网安备 33010602011771号