heapq、bisect 与常用算法型标准库 | Python
本章覆盖:heapq 最小堆;heappush / heappop;nlargest / nsmallest;bisect;有序序列插入与查找;这些工具是算法能力的 API 支撑,不替代完整算法课程。
本章知识点
- heapq 最小堆
- heappush / heappop
- nlargest / nsmallest
- bisect
- 有序序列插入与查找
- 这些工具是算法能力的 API 支撑,不替代完整算法课程
本章覆盖:heapq 最小堆;heappush / heappop;nlargest / nsmallest;bisect;有序序列插入与查找;这些工具是算法能力的 API 支撑,不替代完整算法课程。