Implement Min Stack

Stack / Queues FAQs Hard
  • Designing a stack that supports operations like push, pop, top, and retrieving the minimum element in constant time is very relevant in real-world software development
  • One classic example is in the design of the "Undo" functionality in many software programs like text editors, image editing tools, or even web browsers
  • Each action is 'pushed' onto the stack, then 'popped' off when the user triggers the 'Undo' command
  • The 'top' operation can help show a preview of the action that will be undone next
  • The 'getMin' operation, though might not be directly applicable in this case, could still be used in related contexts, say, retrieving the minimal state or least resource-intensive action from a stack of operations
  • This problem is essentially about efficiently managing and accessing data, a central aspect of software development

Design a stack that supports the following operations in constant time: push, pop, top, and retrieving the minimum element.


Implement the MinStack class:


MinStack(): Initializes the stack object.

void push(int val): Pushes the element val onto the stack.

void pop(): removes the element on the top of the stack.

int top(): gets the top element of the stack.

int getMin(): retrieves the minimum element in the stack.

Examples:

Input:

["MinStack", "push", "push", "push", "getMin", "pop", "top", "getMin"]

[ [], [-2], [0], [-3], [ ], [ ], [ ], [ ] ]


Output:

[null, null, null, null, -3, null, 0, -2]


Explanation:

MinStack minStack = new MinStack();

minStack.push(-2);

minStack.push(0);

minStack.push(-3);

minStack.getMin(); // returns -3

minStack.pop();

minStack.top();  // returns 0

minStack.getMin(); // returns -2

Input:

["MinStack", "push", "push", "getMin", "push", "pop", "getMin", "top"]

[ [ ], [5], [1], [ ], [3], [ ], [ ], [ ] ]


Output:

[null, null, null, 1, null, null, 1, 1]


Explanation:

MinStack minStack = new MinStack();

minStack.push(5);

minStack.push(1);

minStack.getMin(); // returns 1

minStack.push(3);

minStack.pop();

minStack.getMin(); // returns 1

minStack.top();  // returns 1

Input:

["MinStack", "push", "push", "push", "top", "getMin", "pop", "getMin"]

[[], [10], [15], [5], [], [], [], []]

Constraints

  • -105 <= val <=105
  • Methods pop, top and getMin operations will always be called on non-empty stacks.
  • At most 5*104 calls will be made to push, pop, top, and getMin.

Hints

  • A brute-force approach would store elements in a normal stack and find the minimum by scanning all elements on each getMin() call, resulting in O(n) worst-case time complexity.
  • Use a primary stack (stack) to store elements. Use a secondary stack (min_stack) to track the minimum value at each push. When pushing a new element, compare it with the current minimum. Push the smaller value onto min_stack. When popping, remove from both stacks.

Company Tags

Lyft HashiCorp Visa Uber JPMorgan Chase Robinhood Zoho Qualcomm Target OYO Rooms Stripe Johnson & Johnson eBay Siemens Healthineers Cloudflare Unity Technologies MongoDB Morgan Stanley Activision Blizzard Snowflake American Express Flipkart Shopify Roche Docker Google Microsoft Amazon Meta Apple Netflix Adobe