Heaps & Priority Queues Checkpoint

Heap properties, top-K patterns, and multi-way merges.


1. In a min-heap, the root contains:
2. To find the kth largest element using a heap, you should use:
3. Time complexity of heap push and pop operations?
4. When merging k sorted lists with a heap, the time complexity is:
5. In Python, to use a max-heap with heapq, you should: