最小堆是,但是最大堆模块是在Python中定义的吗?
可能的重复:
我使用什么来实现最大堆在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将数字乘以 -1 并使用最小堆。
You could multiply your numbers by -1 and use the min heap.
无需从头开始实现最大堆。您可以轻松地使用一些数学知识将最小堆变成最大堆!
请参阅此和这个 - 但实际上这个答案。
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.