我正在嘗試編寫快速排序的代碼,但它始終在進行無限循環,我試圖在下面的代碼中找到錯誤,請有人幫忙。快速排序進入無限循環
#include<stdio.h>
#include<stdlib.h>
int arr[100];
void quicksort(int low,int high)
{
int i = low,j = high,pivotIndex,pivot;
pivotIndex = rand()%20;
pivot = arr[pivotIndex];
if(i>=j)
return;
while(i<j)
{
while(arr[i]<pivot && i<j)
{
i++;
}
while(arr[j]>pivot && j>i)
{
j--;
}
if(i<j)
{
int temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
quicksort(low,i);
quicksort(i+1,high);
}
int main()
{
int i,j,temp;
for(i=0;i<20;i++)
arr[i] = rand()%21;
for(i=0;i<20;i++)
printf("%d ",arr[i]);
printf("\n");
quicksort(0,19);
for(i=0;i<20;i++)
printf("%d ",arr[i]);
printf("\n");
return 0;
}
@DEVENDERGOYAL:您的編輯更改的問題,實際上固定在它的錯誤之一,在這個問題上的一個問題是這樣的錯誤。確保在編輯時 - 你不會改變問題本身。 – amit