快速排序(QuickSort)

/*
快速排序:
1.以temp=a[SIZE/2]为基准,从右到左找到第一个比temp小的数,并交换位置,
从左到右找第一个比temp大的数,并交换位置,
2.递归排序a[0]到temp 和 temp到 a[SIZE]

*/
#include
#include
#include

#define SIZE 10

void QuickSort(int *arr,int left,int right)
{
int f,t;
int rtemp,ltemp;

ltemp=left;
rtemp=right;
f=arr[(left+right)/2];			//以中位数为基准开始排序
while(ltempf)
	{
		--rtemp;
	}
	if(ltemp<=rtemp)
	{
		t=arr[ltemp];
		arr[ltemp]=arr[rtemp];
		arr[rtemp]=t;
		--rtemp;
		++ltemp;
	}
}
if(ltemp==rtemp)
{
	ltemp++;
}
if(left

}
void main()
{
int i;
int array[SIZE];
srand(time(NULL));
for(i=0;i {
array[i]=rand()%100+1; //1-100
}
printf(“排序前:\n”);
for(i=0;i {
printf("%d “,array[i]);
}
printf(”\n");
QuickSort(array,0,SIZE-1);
printf(“排序后:\n”);
for(i=0;i {
printf("%d “,array[i]);
}
printf(”\n");
}

你可能感兴趣的:(C/C++)