我一直在研究C ++中的堆排序函数,它遵循我们的课本“Intro to Algorithms 3rd edition”中的逻辑,并没有得到所需的输出。我一直在努力解决这个问题并且很接近,但我没有看到我的错误。我正在使用向量,并省略了从单独的文本文件中读取值的代码。
我对每个版本中的索引出错的想法?添加,我用来测试的输入列表是 10 15 8 3 16 20 11 12 5 7 4 1 19 13 2 6 9 14 17 18 。
我尝试的第一种方法更接近本书,但输出 10 19 20 15 17 16 11 12 13 9 18 14 8 7 6 4 3 2 5 1 。如果我能弄明白我是如何弄乱索引的话,这是我的首选解决方案。
void maxHeapify(vector<int>&);
void buildMaxHeap(vector<int>&);
void heapSort(vector<int>&);
int main(int argc, char * argv[])
{
if (argc <= 1)
{
std::cerr << "A file was not found or is not accessable." << std::endl;
return (1);
}
vector<int> list;
int loc;
ifstream fin(argv[1]);
while (fin >> loc)
{
list.push_back(loc);
}
// print unsorted list
cout << "Unsorted List:\n";
for (int i = 0; i < list.size(); ++i)
cout << list[i] << ' ';
cout << endl;
heapSort(list);
// print sorted list
cout << "Sorted List:\n";
for (int i = 0; i < list.size(); ++i) {
cout << list[i] << " ";
}
cout << endl;
cin.get();
return(0);
}
/* Heap Sort from Textbook using Vectors ***********************************/
void maxHeapify(vector<int>& A, int i)
{
int largest;
int l = 2 * i;
int r = (2 * i) + 1;
if ((l <= A.size()) && (A[l] > A[i]))
largest = l;
else
largest = i;
if ((r <= int(A.size())) && (A[r] > A[largest]))
largest = r;
if (largest != i)
{
swap(A[i], A[largest]);
maxHeapify(A, largest);
}
}
void buildMaxHeap(vector<int>& A)
{
for (int i = int((A.size()-1) / 2); i >= 1; i--)
{
maxHeapify(A, i);
}
}
void heapSort(vector<int>& A)
{
buildMaxHeap(A);
for (int i = int(A.size()-1); i >= 2; i--)
swap(A[1], A[i]);
maxHeapify(A, 1);
}
}
我尝试的第二种方法最终输出 2 1 3 4 5 6 7 8 9 11 12 13 14 15 16 17 18 19 20到50 在随机排序的50个整数列表上但是在仅包含20个随机整数的列表中是正确的。代码如下:
void maxHeapify(vector<int>&, int, int);
void buildMaxHeap(vector<int>&, int);
void heapSort(vector<int>&, int);
int main(int argc, char * argv[])
{
if (argc <= 1)
{
std::cerr << "A file was not found or is not accessable." << std::endl;
return (1);
}
vector<int> list;
int loc;
ifstream fin(argv[1]);
while (fin >> loc)
{
list.push_back(loc);
}
// print unsorted list
cout << "Unsorted List:\n";
for (int i = 0; i < list.size(); ++i)
cout << list[i] << ' ';
cout << endl;
clock_t begin = clock();
heapSort(list, int(list.size() - 1));
clock_t end = clock();
double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC; //only reports in seconds, need to replace.
printf("Heap Sort Elasped time is %0.6f seconds.", elapsed_secs);
cout << endl;
// print sorted list
cout << "Sorted List:\n";
for (int i = 0; i < list.size(); ++i) {
cout << list[i] << " ";
}
cout << endl;
cin.get();
return(0);
}
/* Heap Sort from Textbook using Vectors ***********************************/
void maxHeapify(vector<int>& A, int i, int n)
{
int largest;
int l = 2 * i;
int r = (2 * i) + 1;
if ((l <= n) && (A[l - 1] > A[i - 1]))
largest = l;
else
largest = i;
if ((r <= n) && (A[r - 1] > A[largest - 1]))
largest = r;
if (largest != i)
{
swap(A[i - 1], A[largest - 1]);
maxHeapify(A, largest, n);
}
}
void buildMaxHeap(vector<int>& A, int n)
{
for (int i = n / 2; i >= 1; i--)
{
maxHeapify(A, i, n);
}
}
void heapSort(vector<int>& A, int n)
{
buildMaxHeap(A, n);
for (int i = n; i >= 2; i--)
{
swap(A[0], A[i]);
maxHeapify(A, 1, i - 1);
}
}
答案 0 :(得分:1)
本书提供的算法将索引视为1,2,3....N
,它们从1开始。
所以只需按照算法进行操作但记住一件事当我们访问数组时我们必须从索引中减去1
所以你的第一个方法代码应该是:
void maxHeapify(vector<int>& A, int i, int n)
{
int largest;
int l = 2 * i;
int r = (2 * i) + 1;
if ((l <= n) && (A[l-1] > A[i-1]))
largest = l;
else
largest = i;
if ((r <= n) && (A[r-1] > A[largest-1]))
largest = r;
if (largest != i)
{
swap(A[i-1], A[largest-1]);
maxHeapify(A, largest, n);
}
}
在第二种方法中,你所做错的是你正在检查 0基于索引的界限。
我们不能通过 0基于索引,因为对于0索引,左子项位于索引1,但 2 * 0 是 0 only,所以唯一的方法是在任何地方使用基于1的索引,并且仅在访问减去的元素时使用 - 1
答案 1 :(得分:0)
我最终搞清楚了索引问题。由于我使用指针指向A并且大小永远不正确,我仍然无法获得第一种方法。所以我坚持第二种方法。这是更正后的代码。
void maxHeapify(vector<int>&, int, int);
void buildMaxHeap(vector<int>&, int);
void heapSort(vector<int>&, int);
int main(int argc, char * argv[])
{
if (argc <= 1)
{
std::cerr << "A file was not found or is not accessable." << std::endl;
return (1);
}
vector<int> list;
int loc;
ifstream fin(argv[1]);
while (fin >> loc)
{
list.push_back(loc);
}
// print unsorted list
//cout << "Unsorted List:\n";
//for (int i = 0; i < list.size(); i++)
// cout << list[i] << ' ';
//cout << endl;
clock_t begin = clock();
heapSort(list, int(list.size() - 1));
clock_t end = clock();
double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC; //only reports in seconds, need to replace.
printf("Heap Sort Elasped time is %0.6f seconds.", elapsed_secs);
cout << endl;
// print sorted list
//cout << "Sorted List:\n";
//for (int i = 0; i < list.size(); i++) {
// cout << list[i] << " ";
//}
//cout << endl;
cin.get();
return(0);
}
/* Heap Sort from Textbook using Vectors ***********************************/
void maxHeapify(vector<int>& A, int i, int n)
{
int largest;
int l = 2 * i;
int r = (2 * i) + 1;
if ((l <= n) && (A[l - 1] > A[i - 1]))
largest = l;
else
largest = i;
if ((r <= n) && (A[r - 1] > A[largest - 1]))
largest = r;
if (largest != i)
{
swap(A[i - 1], A[largest - 1]);
maxHeapify(A, largest, n);
}
}
void buildMaxHeap(vector<int>& A, int n)
{
for (int i = n / 2; i >= 1; i--)
{
maxHeapify(A, i, n);
}
}
void heapSort(vector<int>& A, int n)
{
buildMaxHeap(A, n);
for (int i = n; i >= 1; i--) // Remove last element from heap
{
swap(A[0], A[i]);
maxHeapify(A, 1, i); // Heapify reduced heap
}
}