Problems / Heap / Priority Queue / Kth Largest Element in a Stream
#64 Easy Time O(n log k) Space O(k) Animated

Kth Largest Element in a Stream

Design a stream where you can find the kth largest element.

LeetCode ↗
Tutor Mode Build the mental model before you memorize the code.
  1. 1 Predict
  2. 2 Trace
  3. 3 Explain
  4. 4 Implement
Pattern Priority queue for the next best choice

Keep only candidates that may become the next answer, ordered by the priority that matters.

Approach: Min-Heap
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps