0

在下面的代码中,heapq.heappop()不检查列表是否已堆积。那为什么会存在这个方法呢?会不会h.pop(0)等价?

import heapq

h = [10, 4, 6, 8]
print(heapq.heappop(h))
4

0 回答 0