Search⌘ K
AI Features

Common Heap Patterns

Explore the two primary heap patterns used in JavaScript coding interviews: the Top-K pattern for finding the largest or smallest K elements efficiently, and the K-way merge pattern for merging multiple sorted sequences. Understand when to apply each pattern, their time and space complexities, and how they optimize common problem-solving scenarios in technical interviews.

We'll cover the following...

Recognizing a heap as the right data structure is only the first step. The next is knowing which pattern to apply. This lesson covers the two most important heap patterns in coding interviews: the Top-K pattern and the K-way merge pattern. They represent two fundamentally different uses of a heap, and together they cover the majority of heap-based interview problems.

Top-K pattern

The Top-K pattern uses a heap of fixed size kk to efficiently find the K largest or K smallest elements from a collection without sorting the entire dataset. In JavaScript, this usually means using a small custom heap or priority queue. For the K largest elements, we maintain a min-heap of size K. As we scan through the data, we push each element onto the heap. When the heap exceeds size K, we pop the smallest element. By the end of the scan, the heap contains exactly the K largest elements. The smallest among them, at the root, is the Kth largest overall.

For the K smallest elements, we maintain a max-heap of size K and pop whenever the heap exceeds K, discarding the largest seen so far. The key insight is that we never need to sort the full dataset. We only maintain a small heap of size K throughout the traversal.

Sorting the entire input and taking the last K elements gives the right answer, but costs O(nlogn)O(n log n). A heap-based approach costs O(nlogk)O(n log k), which is significantly faster when K is much smaller than n. In an interview, sorting the full dataset to find K elements signals that we missed the heap optimization entirely.

When to reach for it

The signal is any problem that asks for K elements from a larger collection without requiring the full collection to be sorted. The collection may be static or arrive as a stream. If the problem involves finding the Kth largest or smallest element, or returning the top K elements by some criteria, this is the pattern.

Pattern recognition: Keywords to watch for are top K, K largest, K smallest, Kth largest, Kth smallest, K most frequent, and K closest. Any problem that asks us to rank or filter a collection down to K elements without full sorting is a Top-K problem.

Time and space complexity

  • Time O ...