|
| 1 | +<h2><a href="https://leetcode.com/problems/min-stack">155. Min Stack</a></h2><h3>Medium</h3><hr><p>Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.</p> |
| 2 | + |
| 3 | +<p>Implement the <code>MinStack</code> class:</p> |
| 4 | + |
| 5 | +<ul> |
| 6 | + <li><code>MinStack()</code> initializes the stack object.</li> |
| 7 | + <li><code>void push(int val)</code> pushes the element <code>val</code> onto the stack.</li> |
| 8 | + <li><code>void pop()</code> removes the element on the top of the stack.</li> |
| 9 | + <li><code>int top()</code> gets the top element of the stack.</li> |
| 10 | + <li><code>int getMin()</code> retrieves the minimum element in the stack.</li> |
| 11 | +</ul> |
| 12 | + |
| 13 | +<p>You must implement a solution with <code>O(1)</code> time complexity for each function.</p> |
| 14 | + |
| 15 | +<p> </p> |
| 16 | +<p><strong class="example">Example 1:</strong></p> |
| 17 | + |
| 18 | +<pre> |
| 19 | +<strong>Input</strong> |
| 20 | +["MinStack","push","push","push","getMin","pop","top","getMin"] |
| 21 | +[[],[-2],[0],[-3],[],[],[],[]] |
| 22 | + |
| 23 | +<strong>Output</strong> |
| 24 | +[null,null,null,null,-3,null,0,-2] |
| 25 | + |
| 26 | +<strong>Explanation</strong> |
| 27 | +MinStack minStack = new MinStack(); |
| 28 | +minStack.push(-2); |
| 29 | +minStack.push(0); |
| 30 | +minStack.push(-3); |
| 31 | +minStack.getMin(); // return -3 |
| 32 | +minStack.pop(); |
| 33 | +minStack.top(); // return 0 |
| 34 | +minStack.getMin(); // return -2 |
| 35 | +</pre> |
| 36 | + |
| 37 | +<p> </p> |
| 38 | +<p><strong>Constraints:</strong></p> |
| 39 | + |
| 40 | +<ul> |
| 41 | + <li><code>-2<sup>31</sup> <= val <= 2<sup>31</sup> - 1</code></li> |
| 42 | + <li>Methods <code>pop</code>, <code>top</code> and <code>getMin</code> operations will always be called on <strong>non-empty</strong> stacks.</li> |
| 43 | + <li>At most <code>3 * 10<sup>4</sup></code> calls will be made to <code>push</code>, <code>pop</code>, <code>top</code>, and <code>getMin</code>.</li> |
| 44 | +</ul> |
0 commit comments