最小堆是,但是最大堆模块是在Python中定义的吗?

发布于 2024-09-27 17:49:15 字数 260 浏览 5 评论 0原文

可能的重复:
我使用什么来实现最大堆在 Python 中?

Python 在 heapq 模块中实现了最小堆。但是,如果想要最大堆,是否必须从头开始构建?

Possible Duplicate:
What do I use for a max-heap implementation in Python?

Python has a min heap implemented in the heapq module. However, if one would want a max heap, would one have to build from scratch?

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

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

发布评论

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

评论(2

箹锭⒈辈孓 2024-10-04 17:49:15

您可以将数字乘以 -1 并使用最小堆。

You could multiply your numbers by -1 and use the min heap.

回首观望 2024-10-04 17:49:15

无需从头开始实现最大堆。您可以轻松地使用一些数学知识将最小堆变成最大堆!

请参阅这个 - 但实际上这个答案

No need to implement a max heap from scratch. You can easily employ a bit of math to turn your min heap into a max heap!

See this and this - but really this SO answer.

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