这是没有通过的测试用例:
5 0 1 8 7
这是我的代码。
void swap(int* A, int* B)
{
int t;
t = *A;
*A = *B;
*B=t;
}
void sorthelper(int * arr,int ind1, int ind2)
{
int r = ind1+1;
int w = ind1+1;
// int i = 0;
if (ind2 - ind1 <= 1)
{
return;
}
for(r=ind1+1; r<=ind2;r++)//For r starting at one bigger then pivot and less then the length(ind2), increment r by one each time
{
if(arr[r] < arr[ind1])// if read is bigger then pivot, increment w and swap w and r
{
swap(&arr[w],&arr[r]);
w++;
}
}
swap(&arr[ind1], &arr[w-1]);//swap pivot with one less then write spot
sorthelper(arr, ind1, w-1);
sorthelper(arr, w ,ind2);
}
void sort(int * arr, int length)
{
int ind1 = 0;
int ind2 = 0;
ind2 = length-1;
sorthelper(arr, ind1, ind2);
return;
}
我正在尝试编写一个快速排序算法(是的,这是硬件),除了这个测试用例之外,我所有的东西都在工作。我已经尝试了几个小时来解决这个错误,但我失败了。我曾尝试使用 GDB 来跟踪我的值,但无法确定此错误。任何人都可以提供任何意见吗?
排序函数首先运行,然后搜索助手是递归的并利用交换函数。