快速排序程序
一下程序我认为没有任何问题啊,为什么没有输出呢,是什么原因,想了好久都没想到,哪位大神帮忙看看。
#include <iostream>
using namespace std;
int Partition( int *r,int i,int j)
{
int pivot=r[i];
while(i<j)
{
while((i<j) && r[j]>=pivot)
j--;
if(i<j)
r[i++]=r[j];
while((i<j) && r[i]<=pivot)
i++;
if(i<j)
r[j--]=r[i];
}
return i;
}
void QuickSort( int *a,int i,int j)
{
int temp;
if(i<j)
temp=Partition( a, i, j);
QuickSort(a,i,temp-1);
QuickSort(a,temp+1,j);
}
void main()
{
int a[]={4,0,3,5,8,1,9};
QuickSort(a,0,6);
for(int i=0;i<7;i++)
{
cout<<a[i]<<' ';
}
}
[解决办法]
void QuickSort( int *a,int i,int j)
{
int temp;
if(i<j){
temp=Partition( a, i, j);
QuickSort(a,i,temp-1);
QuickSort(a,temp+1,j);
}
}
加括号哦亲:)
[解决办法]
楼主看看吧
int Partition( int *r,int i,int j){ int pivot=r[i]; while(i<j) { while((i<j) && r[j]>=pivot) j--; r[i]=r[j]; while((i<j) && r[i]<=pivot) i++; r[j]=r[i]; } r[i] = pivot; return i;}