155. 最小栈(java)
155. 最小栈
题目描述
设计一个支持 push ,pop ,top 操作,并能在常数时间内检索到最小元素的栈。
push(x) —— 将元素 x 推入栈中。
pop() —— 删除栈顶的元素。
top() —— 获取栈顶元素。
getMin() —— 检索栈中的最小元素。
示例:
输入:
[“MinStack”,“push”,“push”,“push”,“getMin”,“pop”,“top”,“getMin”]
[[],[-2],[0],[-3],[],[],[],[]]
输出:
[null,null,null,null,-3,null,0,-2]
解释:
MinStack minStack = new MinStack();
minStack.push(-2);
minStack.push(0);
minStack.push(-3);
minStack.getMin(); --> 返回 -3.
minStack.pop();
minStack.top(); --> 返回 0.
minStack.getMin(); --> 返回 -2.
提示:
pop、top 和 getMin 操作总是在 非空栈 上调用。
解法一:辅助双栈
栈1作为正常出入栈,栈2存储栈1中最小值
class MinStack {
Stack<Integer> stack1;
Stack<Integer> stack2;
/** initialize your data structure here. */
public MinStack() {
stack1 = new Stack<>();
stack2 = new Stack<>();
stack2.push(Integer.MAX_VALUE);
}
public void push(int x) {
stack1.push(x);
if(x<=stack2.peek()) stack2.push(x);
}
public void pop() {
int ans = stack1.pop();
if(ans == stack2.peek()) stack2.pop();
}
public int top() {
return stack1.peek();
}
public int getMin() {
if(stack2.size()==1) return 0;
return stack2.peek();
}
}

解法二:辅助单栈
用一个变量来存储最小值,当存入一个更小的,先将当前最小进栈,再将新值进栈并更新min

class MinStack {
Stack<Integer> stack1;
int min;
/** initialize your data structure here. */
public MinStack() {
stack1 = new Stack<>();
min=Integer.MAX_VALUE;
}
public void push(int x) {
if(x<=min){
stack1.push(min);
min=x;
}
stack1.push(x);
}
public void pop() {
int tmp = stack1.pop();
if(min== tmp) min = stack1.pop();
}
public int top() {
return stack1.peek();
}
public int getMin() {
if(stack1.size()==0) return 0;
return min;
}
}
