堆排序算法

发布于 2024-08-16 19:54:32 字数 79 浏览 7 评论 0原文

我需要 HeapSort 算法对数组的元素进行排序,使得数组的所有元素即 [19 18 14 15 5 7 13 3 8] 都按非递减顺序排列。

I need the algorithm of HeapSort for sorting the elements of the array, such that all the elements of the array i.e [19 18 14 15 5 7 13 3 8] are in non-decreasing order.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

单调的奢华 2024-08-23 19:54:32

此处了解堆排序。还提供了一个很好的伪代码。

Read about Heapsort here. A nice pseudocode has also been provided.

在巴黎塔顶看东京樱花 2024-08-23 19:54:32

堆排序非常简单。您抓取所有元素,将它们放入 (在您的情况下,最大-heap)以任何顺序,然后从堆中抓取它们(使用delete-max操作),然后它们就全部排序了。

Heapsort is pretty simple. You grab all elements, put them in a heap (in your case, a max-heap) in any order and then grab them back from the heap (with the delete-max operation) and they come all sorted up.

梦途 2024-08-23 19:54:32

实际上,您可以使用 IF-free(branchless)堆排序

Actually, you can use IF-free (branchless) heap sort

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文