剑指offer——20.包含min函数的栈
题目描述
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))。
注意:保证测试中不会当栈为空的时候,对栈调用pop()或者min()或者top()方法。
思路:
应用一个辅助栈,压的时候,如果A栈的压入比B栈压入大,B栈不压,,,,小于等于,AB栈同时压入,出栈,如果,AB栈顶元素不等,A出,B不出。
代码:
import java.util.Stack;
public class Solution {
Stack<Integer> s1 = new Stack<Integer>();
Stack<Integer> s2 = new Stack<Integer>();
public void push(int node) {
s1.push(node);
if(s2.isEmpty()){
s2.push(node);
}else{
if(node <= s2.peek()){
s2.push(node);
}
}
}
public void pop() {
if(s1.peek() == s2.peek()){
s2.pop();
}
s1.pop();
}
public int top() {
return s1.peek();
}
public int min() {
return s2.peek();
}
}