1# * coding: UTF8 *
2
3"""
4该模块实现相应 CPython 模块的子集,如下所示。
5
6堆队列即为以一定方式储存其所有项的列表。
7
8函数
9------------------------------
10
11"""
12
13
14
15def heappush(heap, item):
16   """
17   将item载入heap中
18   """
19   pass
20
21def heappop(heap):
22   """
23   从 heap 中提取首项,并返回,若堆为空,则引发Index错误
24   """
25   pass
26
27def heapify(x):
28
29   """
30   将列表 x 转换为一个堆
31   """
32   pass