#include <stdio.h>
void quicksort(int a[],int low,int high)
{
int i = low;
int j = high;
int temp = a[i];
if( low < high)
{
while(i < j)
{
while((a[j] >= temp) && (i < j))
{
j--;
}
a[i] = a[j];
while((a[i] <= temp) && (i < j))
{
i++;
}
a[j]= a[i];
}
a[i] = temp;
quicksort(a,low,i-1);
quicksort(a,j+1,high);
}
else
{
return;
}
}
void main()
{
int i;
int arry[5] = {23,1,21,4,19};
quicksort(arry,0,4);
for(i=0;i<5;i++)
{
printf("%d ",arry[i]);
}
printf("\n");
}
这个算法里面大部分懂,但是因为很多函数没学到,不太懂quicksort()后面括号里的内容的意思,求指教