package
Version:
v1.4.9
Opens a new window with list of versions in this module.
Published: Nov 15, 2019
License: MIT
Opens a new window with license information.
Imports: 0
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
README
¶
< Previous
Next >
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.
- push(x) -- Push element x onto stack.
- pop() -- Removes the element on top of the stack.
- top() -- Get the top element.
- getMin() -- Retrieve the minimum element in the stack.
Example:
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.
[Stack]
[Design]
Similar Questions
- Sliding Window Maximum (Hard)
- Max Stack (Easy)
Hints
Hint 1
Consider each node in the stack having a minimum value. (Credits to @aakarshmadhavan)
Documentation
¶
* initialize your data structure here.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.