python如何实现内置堆功能(将列表转换为堆)

2025年01月14日 建站教程

h = [1, 2, 3, 5, 7]
heapq.heapify(h)
print(h)
h = [5, 2, 1, 4, 7]
heapq.heapify(h)
print(h)
#输出
[1, 2, 3, 5, 7]
[1, 2, 5, 4, 7]

本文链接:http://so.lmcjl.com/news/21307/

展开阅读全文
相关内容