Skip to content

Commit cd10909

Browse files
committed
Create README - LeetHub
1 parent a3f4d8a commit cd10909

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

0155-min-stack/README.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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>&nbsp;</p>
16+
<p><strong class="example">Example 1:</strong></p>
17+
18+
<pre>
19+
<strong>Input</strong>
20+
[&quot;MinStack&quot;,&quot;push&quot;,&quot;push&quot;,&quot;push&quot;,&quot;getMin&quot;,&quot;pop&quot;,&quot;top&quot;,&quot;getMin&quot;]
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>&nbsp;</p>
38+
<p><strong>Constraints:</strong></p>
39+
40+
<ul>
41+
<li><code>-2<sup>31</sup> &lt;= val &lt;= 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

Comments
 (0)