forked from DengWangBao/Leetcode-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMinStack.java
More file actions
37 lines (28 loc) · 684 Bytes
/
MinStack.java
File metadata and controls
37 lines (28 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import java.util.Stack;
public class MinStack {
Stack<Integer> mMinStack;
Stack<Integer> mStack;
public MinStack() {
mStack = new Stack<Integer>();
mMinStack = new Stack<Integer>();
}
public void push(int x) {
mStack.push(x);
// 注意这里要判空
if (mMinStack.isEmpty() || x < mMinStack.peek()) {
mMinStack.push(x);
} else {
mMinStack.push(mMinStack.peek());
}
}
public void pop() {
mStack.pop();
mMinStack.pop();
}
public int top() {
return mStack.peek();
}
public int getMin() {
return mMinStack.peek();
}
}