MinMax堆算法实现

发布于 2024-09-30 05:49:54 字数 236 浏览 3 评论 0原文

我搜索 minmax heap 算法实现, 我记得关于这个结构的一些事情,她的实现是在一个堆上。 即使堆树中的级别(楼层)也是最小颜色,其余节点也是最大颜色。 我记得这个工作的一些草稿,但我搜索了一些关于它的好文档或一些 CC++ 代码片段,我找不到 Google 的任何有用信息,我think 是一种不广泛使用的算法。

问候并感谢您提供有用的答案。

I searching minmax heap algorithm implementation,
i remember some things about this structure, her implementation is on one heap.
Even levels (floors) in heap tree is a min colored, and rest of nodes is max colored.
I remember some draft of workings of this but i searching some good document about it or some C or C++ code snippet, i can't find any useful information's by Google, i think is a non widespread algorithm.

Greetings and Thanks for helpful answers.

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

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

发布评论

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

评论(2

倚栏听风 2024-10-07 05:49:54

这是 MinMaxHeaps 的原始提案:

http://www .cs.otago.ac.nz/staffpriv/mike/Papers/MinMaxHeaps/MinMaxHeaps.pdf

我已经实现了一个堆,发现它非常简单。我个人从未实施过的一项改进是最小最大精细堆:

http:// /arxiv.org/ftp/cs/papers/0007/0007043.pdf

This is the original proposal for MinMaxHeaps:

http://www.cs.otago.ac.nz/staffpriv/mike/Papers/MinMaxHeaps/MinMaxHeaps.pdf

I've implemented a heap off this and found it to be very simple. An improvement which I've personally never implemented is a min max fine heap:

http://arxiv.org/ftp/cs/papers/0007/0007043.pdf

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