C++ 二叉堆的实现

发布于 2024-07-16 15:35:08 字数 88 浏览 10 评论 0原文

我需要一个作为二叉树实现的最小堆。 真正快速访问最小节点和插入排序。

stl 或 boost 中是否有一个很好的实现,任何人都可以指点我?

I need a min-heap implemented as a binary tree. Really fast access to the minimum node and insertion sort.

Is there a good implementation in stl or boost that anyone can point me too?

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

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

发布评论

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

评论(3

吖咩 2024-07-23 15:35:08

我认为 std::priority_queue 就是您正在寻找的。

I think std::priority_queue is what you are looking for.

南…巷孤猫 2024-07-23 15:35:08

请参阅标准 C++ 算法 make_heap()。

See the Standard C++ algorithm make_heap().

陌生 2024-07-23 15:35:08

STL 没有(二叉)树的概念,但有一些方法可以帮助维护数据集中的堆属性,例如 std::make_heap、std::sort_heap、std::push_heap 等。

The STL doesn't have a concept of (binary) trees, but there are methods that facilitate in maintaining heap properties in a dataset, such as std::make_heap, std::sort_heap, std::push_heap et cetera.

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