我正在为 C 中的快速排序排列函数编写代码,但在函数的递归调用中,它显示以下错误:Arrange(int,int) 无法返回值。
void Arrange(int left,int right){
int i,j,x,w;
i=left,j=right;
x=(left+right)/2;
do{
while(struct[i].number < struct[x].number)i++;
while(struct[j].number > struct[x].number)j--;
if(i<=j){
w=struct[i].number;
struct[i].number=struct[j].number;
struct[j].number=w;
i++;j--;
}}while(i<=j);
if(left<j)
return Arrange(left,j); //1st recursive call. It doesn't work.
if(right>i)
return Arrange(i,right); //2nd recursive call.It doesn't work either.
};
为什么会这样?
这只是一个更大程序的功能,我没有发布它,因为它看起来更像是该功能的逻辑问题。它已经在完整程序中定义的结构。