We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12ace2a commit babe6e0Copy full SHA for babe6e0
solution/0155.Min Stack/Solution.cpp
@@ -0,0 +1,40 @@
1
+class MinStack {//方法1
2
+public:
3
+ /** initialize your data structure here. */
4
+ stack<int> s;
5
+ MinStack() {
6
+
7
+ }
8
9
+ void push(int x) {
10
+ if(s.empty()) {
11
+ s.push(x);
12
13
+ } else {
14
+ int temp = s.top();
15
16
+ if(x < temp) {
17
18
19
+ s.push(temp);
20
21
22
23
24
+ void pop() {
25
+ s.pop();
26
27
28
29
+ int top() {
30
31
32
+ int top = s.top();
33
34
+ return top;
35
36
37
+ int getMin() {
38
+ return s.top();
39
40
+};
0 commit comments