如何证明堆中最坏情况的反转次数是 Ω(nlogn)?

发布于 2024-09-04 12:36:33 字数 154 浏览 8 评论 0原文

我正忙着准备考试,只是做一些旧的试卷。下面的问题是我似乎无法做的唯一一个问题(我真的不知道从哪里开始)。任何帮助将不胜感激。

使用 Ω(nlogn) 比较排序界限、自底向上堆构造的 theta(n) 界限以及插入排序的顺序复杂度来表明堆中最坏情况的反转次数为 Ω(nlogn)。

I am busy preparing for exams, just doing some old exam papers. The question below is the only one I can't seem to do (I don't really know where to start). Any help would be appreciated greatly.

Use the Ω(nlogn) comparison sort bound, the theta(n) bound for bottom-up heap construction, and the order complexity of insertion sort to show that the worst-case number of inversions in a heap is Ω(nlogn).

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

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

发布评论

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

评论(1

悲凉≈ 2024-09-11 12:36:33

插入排序的复杂度为 O(n+d),其中 d 是反转对的数量。

现在假设您有一组数字,您将其堆起来 (Theta(n)),然后对它们执行插入排序。堆数组中最坏情况下的反转对数量说明了什么?

The complexity of insertion sort is O(n+d) where d is the number of inversion pairs.

Now say you had a set of numbers, which you heapify (Theta(n)) and then perform insertion sort on them. What does it say about the worst case number of inversion pairs in the heap array?

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