Problems / Stack / Min Stack
#22 Medium Time O(1) Space O(n) Animated

Min Stack

Design a stack that supports push, pop, top, and retrieving the minimum 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 LIFO state for unresolved work

Keep only items whose matching decision has not been made yet.

Approach: Paired Value & Minimum Stack
Click play to start
Step 0 / 0
Press play to start the visualization.

Steps