包含min函数的栈
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。
代码
public class Solution {
Stack<Integer> stack = new Stack<Integer>();//栈需要泛型,不能是int
Stack<Integer> minstack = new Stack<Integer>();
public void push(int node) {
stack.push(node);
if(minstack.isEmpty()){
minstack.push(node);
}else{
if(node<minstack.peek()){ //top()方法 不可用
minstack.push(node);
}
}
}
public void pop() {//主栈元素直接弹出,min栈
int temp = stack.pop();
if(temp==minstack.peek()) minstack.pop();
}
public int top() {
return stack.peek();
}
public int min() {
return minstack.peek();
}
}
突破点
栈没有top()方法
入栈时选出元素值小的加入到另一个栈中存放