Skip to content

Commit babe6e0

Browse files
committed
Add solution 0155 in cpp
1 parent 12ace2a commit babe6e0

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

solution/0155.Min Stack/Solution.cpp

+40
Original file line numberDiff line numberDiff line change
@@ -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+
s.push(x);
13+
} else {
14+
int temp = s.top();
15+
s.push(x);
16+
if(x < temp) {
17+
s.push(x);
18+
} else {
19+
s.push(temp);
20+
}
21+
}
22+
}
23+
24+
void pop() {
25+
s.pop();
26+
s.pop();
27+
}
28+
29+
int top() {
30+
int temp = s.top();
31+
s.pop();
32+
int top = s.top();
33+
s.push(temp);
34+
return top;
35+
}
36+
37+
int getMin() {
38+
return s.top();
39+
}
40+
};

0 commit comments

Comments
 (0)