- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我是 C++/算法的新手,我不太确定我的 heapSort 函数有什么问题。给定数字(6、2、9、1、5),我输出了以下不正确的数字:
9
4197040
2
4196422
6
感谢您的关注。
#include <iostream>
using namespace std;
void heapSort(int arr [], int size);
void reheapDown(int arr[], int root, int bottom);
void swap(int & num1, int & num2);
int main()
{
int arr[5] = {6, 2, 9, 1, 5};
heapSort(arr, 5);
for (int i = 0; i < 5; i++)
cout << arr[i] << endl;
return 0;
}
void heapSort(int arr [], int size){
int i;
for (i = size/2 -1; i >= 0; i--)
reheapDown(arr, i, size-1);
for (i = size - 1; i >= 1; i--){
swap(arr[0], arr[i]);
reheapDown(arr, 0, i-1);
}
}
void reheapDown(int arr[], int root, int bottom){
int max, right, left;
left = root * 2 + 1;
right = root * 2 + 2;
if (left <= bottom)
max = left;
else{
if (arr[left] <= right)
max = right;
else
max = left;
}
if (arr[root] < arr[max]){
swap(arr[root], arr[max]);
reheapDown(arr, max, bottom);
}
}
void swap(int & num1, int & num2){
int temp;
temp = num1;
num1 = num2;
num2 = temp;
}
最佳答案
至少有一个问题是您正在越界访问:
void reheapDown(int arr[], int root, int bottom){
int max = 0;
int left = root * 2 + 1;
int right = root * 2 + 2;
if (left <= bottom)
max = left;
else{
if (left < 0){
throw std::runtime_error("Uh oh, left is less than zero");
}
if (left > 4){
throw std::runtime_error("Uh oh, left is greater than 4");
}
if (arr[left] <= right)
max = right;
else
max = left;
}
if (arr[root] < arr[max]){
if (root < 0){
throw std::runtime_error("Uh oh, root is less than zero");
}
if (root > 4){
throw std::runtime_error("Uh oh, root is greater than 4");
}
if (root < 0 || root > 4){
throw std::runtime_error("Uh oh");
}
swap(arr[root], arr[max]);
reheapDown(arr, max, bottom);
}
}
将输出:
terminate called after throwing an instance of 'std::runtime_error'
what(): Uh oh, left is greater than 4
关于C++:HeapSort 函数输出错误的数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33586183/
我已经看了好几个小时了,还是想不通。如果 heapify 函数中的比较更改为大于,则输出按应有的顺序递增。我希望我的列表按降序排序,但它没有使用以下代码给出正确的输出: #include #incl
我是 C++/算法的新手,我不太确定我的 heapSort 函数有什么问题。给定数字(6、2、9、1、5),我输出了以下不正确的数字: 9 4197040 2 4196422 6 感谢您的关注。 #i
我卡在 heapSort 上了。我有一些代码,但我认为它是错误的,因为我很难编译它。有什么建议么?堆排序应该很容易实现,但我有一堆语法错误。这是我的代码: /* Framework for Heap
考虑一个已经按降序排列的数组 A[n]。堆已经建立。现在考虑我们将 A[1](数组索引从 1 开始)与 A[heap.size] 交换的循环。这是伪代码: Build-Max-Heap(A) //Al
我正在研究算法,特别是堆排序。根据我的理解,heapsort 算法涉及通过首先将列表转换为最大堆来准备列表。 转动我的 [2, 8, 5, 3, 9, 1] 进入 [9, 8, 5, 3, 2, 1]
我在 http://students.ceid.upatras.gr/~lebenteas/Heapsort-using-Multiple-Heaps-final.pdf 找到了使用多个堆的 Heap
传统的Heapsort 算法在每次heapification 后将堆的最后一个元素与当前堆的根交换,然后再次继续该过程。但是,我注意到这是不必要的。 在子数组的堆化之后,当节点包含最高值(如果它是ma
任务是为数组中未知类型的元素编写堆排序(仅使用 C 代码),但我的代码不起作用。对于以下数字输出是 '-100 7 -4 0 33 -3 67 1 5 44' 我也尝试将相同的代码仅用于 int 输入
代码如下: import java.util.Arrays; public class HeapSort { pub
有人可以描述一种算法,该算法在最小堆的数组实现中找到所有小于 x 的键。 我希望运行时间至少为 O(k),其中 k 是报告的键数。 我已经为此挠头一段时间了。 最佳答案 树最小堆有一个简单的递归算法:
出于某种原因,我的 Heapsort 无法正常工作。使用以下测试程序: int main() { AddArrayElement(10); AddArrayElement(110);
我正在尝试使用最小堆实现堆排序。输入是正整数数组,数组的零索引存储大小。谁能发现我的错误?这里使用的语言是 C#。该算法有时可以正常工作,但对于更大的数组,根不是数组中的最小值。 static
我正在尝试用 java 编写一个堆排序方法,但它并没有完全按照我想要的方式工作: public class HeapSort { private static int n; priva
我今天写了两个不同的堆排序实现,都给了我相同的结果: Object i: 18 Object i: 11 Object i: 10 Object i: 9 Object i: 8 Object i:
我正在为软件开发人员面试做准备,并且一直在研究算法问题。我的书展示了一种 Heapsort 算法,它可以按升序对无序数组进行排序。我正在尝试修改它,以便它可以使用最小堆进行排序。但是当我按照代码中的逻
我必须在 C# 中检查 HeapSort 算法时间,我的问题是我知道我必须使用 System.Timers,因为我不知道如何测量算法时间。我必须检查表的算法时间包含 1000、10 000、100 0
我读到 C++ 对其内置的 std::sort 使用 introsort(内省(introspection)排序),它从快速排序开始,并在达到深度限制时切换到堆排序。 我还读到深度限制应该是 2*lo
对于类(class),我必须实现 BST 或 heapSort。我做了 BST,但认为也知道这一点会很好,但现在我被困住了。这是我第一次使用堆(并且真正使用泛型编码/实现 Comparable,所以我
我有一个随机生成的测试程序,数据是随机生成的,然后将它们传递给类 Sorter 的类构造函数。然后Sorter会对数据进行排序,通过一个方法传回给main函数。我还实现了其他几种排序方法作为 Sort
假设我有一个 vector 要排序: std::vector v{9, 8, 0, 2, 7, 3, 2, 1} 假设我想从第三个元素(索引 2)开始排序直到结束,所以我有一个迭代器指向 0 表示开始
我是一名优秀的程序员,十分优秀!