57 Min-heap push and pop Easy Heaps

Demonstrate pushing and popping elements from a min-heap.

58 Heapify an array Easy Heaps

Convert an arbitrary array into a min-heap in-place.

59 Top K frequent elements Medium Heaps

Given an array of integers and k, return the k most frequent elements.

60 Kth smallest in sorted matrix Medium Heaps

Given an n x n matrix where rows and columns are sorted, find the kth smallest element.

61 Meeting rooms II Medium Heaps

Given meeting intervals [start, end], find minimum conference rooms required.

62 Merge K sorted arrays Medium Heaps

Given k sorted arrays, merge them into one sorted array.

95 Dijkstra simplified Medium Advanced Graphs

Shortest path from source in a weighted graph.

115 Meeting Rooms II Medium Intervals

Given meeting time intervals, find the minimum number of conference rooms required.

116 Minimum Interval to Include Each Query Hard Intervals

Given intervals and queries (points), for each query find the size of the smallest interval containing it.

142 Kth Largest Element in an Array Medium Heaps

Find the kth largest element in an unsorted array.