python 的内置模块堆 heapq

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 的内置模块堆 heapq相关的知识,希望对你有一定的参考价值。

In [1]: import heapq

In [2]: h = []

In [3]: h.append(1)

In [4]: h.append(2)

In [5]: h.append(3)

In [6]: h.append(8)

In [7]: h.append(5)

In [8]: h.append(0)
#用heapq 生成一个最小堆
In [9]: heapq.heapify(h)

In [10]: heapq.heappop()

In [11]: heapq.heappop(h)
Out[11]: 0

In [12]: heapq.heappop(h)
Out[12]: 1

In [13]: heapq.heappop(h)
Out[13]: 2

In [14]: heapq.heappop(h)
Out[14]: 3

In [15]: heapq.heappop(h)
Out[15]: 5

In [16]: heapq.heappop(h)
Out[16]: 8

以上是关于python 的内置模块堆 heapq的主要内容,如果未能解决你的问题,请参考以下文章

常用的标准模块5(heapq)

Python标准库模块之heapq

每日python—— 1.4 python中的堆排序模块heapq

python collection 和 heapq 模块使用说明

Python 的 heapq 模块源码分析

python3 -- 堆(heapq)