快速排序




void swap(int *a,int *b){
	int temp=*a;
	*a=*b;
	*b=temp;
}
void quickSort(int *a,int left,int right){
	if(left>right)
		return;
	int temp=a[left];
	int i=left;
	int j=right;
	while(i!=j){
		while(a[j]>=temp&&i