我正在使用C ++进行随机快速排序程序,但出于某种原因,程序是segfaulting,我有点迷失为什么。
我很确定它与我的 hoarePartition 函数有关,在while循环中被捕获,但我不确定问题出在哪里。
解决这个问题的任何帮助都会非常有帮助!
#import <iostream>
#import <cstdlib>
#import <random>
#import <time.h>
#include <ctime>
#include <boost/timer.hpp>
void swap(int& first, int& second)
{
int temp = first;
first = second;
second = temp;
}
int hoarePartition(int* array, int leftIndex, int rightIndex)
{
int partition = array[leftIndex];
int i = leftIndex;
int j = rightIndex + 1;
while (i < j)
{
while (array[i] < partition && i <= j)
{
i = i + 1;
}
while (array[j] > partition && j > i)
{
j = j - 1;
cout << j << endl;
}
swap(array[i], array[j]);
}
swap(array[i], array[j]);
swap(array[leftIndex], array[j]);
return j;
}
void randomQuickSort(int* array, int leftIndex, int rightIndex)
{
if (leftIndex < rightIndex)
{
int q = rand() % (rightIndex - leftIndex) + leftIndex;
swap(array[leftIndex], array[q]);
int s = hoarePartition(array, leftIndex, rightIndex);
randomQuickSort(array, leftIndex, s-1);
randomQuickSort(array, s+1, rightIndex);
}
}
int main(int argc, char** argv)
{
srand(time(NULL));
int size = atoi(argv[1]);
int* array = new int[size];
for (int i = 0; i < size; ++i)
{
array[i] = (100.0 * rand()) / RAND_MAX;
}
boost::timer t;
randomQuickSort(array, 0, size);
std::cout << t.elapsed() << endl;
delete[] array;
return 0;
}
答案 0 :(得分:2)
您使用randomQuickSort
= rightIndex
来调用size
,这比数组中最后一个元素的索引大一个。然后,将其传递给hoarePartition
,将j
初始化为rightIndex+1
,然后(在第二个内部while
循环中)访问array[j]
。
答案 1 :(得分:2)
您正在hoarePartition
功能中访问尺寸+ 1。哪个是数组超出范围的2个元素,导致索引超出范围异常。