QuickSort

//问题描述:随机生成一组数,有序排列。 
#include 
#include
int partition(int a[],int low,int high) 
{
	
	int temp = a[low];
	while(low=temp)
			--high;
		a[low]=a[high];
		
		if(low

你可能感兴趣的:(DataStructure)