题目描述:
定义栈的数据结构,请在该类型中实现一个能够得到栈中所含最小元素的min函数(时间复杂度应为O(1))
解题思路:
建立多一个辅助栈,用来存最小值
代码实现
package com.letcode.stackqueue;
import java.util.Stack;
public class No2 {
Stack<Integer> stack1=new Stack<>();
//辅助栈,存最小值的,大小与原栈一样,若最小值无更新,则存入上一个最小值
Stack<Integer> stack2=new Stack<>();
private void push(int node){
stack1.push(node);
if(stack2.isEmpty())
stack2.push(node);
else
stack2.push(node>stack2.peek()?stack2.peek():node);
}
private int pop(){
if(!stack1.isEmpty()){
stack1.pop();
stack2.pop();
}
return stack1.pop();
}
private int top(){
return stack1.peek();
}
private int min(){
return stack2.peek();
}
}
来源:CSDN
作者:小黄学程序
链接:https://blog.csdn.net/weixin_44716359/article/details/104263446