请在该类型中实现一个能够得到栈中所含最小元素的min函数

孤街醉人 提交于 2019-12-03 17:50:16

import java.util.Stack;

public class Solution {

Stack<Integer> stack1=new Stack<Integer>();

Stack<Integer> stack2=new Stack<Integer>();

public void push(int node) {
     
      stack1.push(node);
    
    if(stack2.isEmpty())
        stack2.push(node);
    else
        if(stack2.peek()>=node)
            stack2.push(node);
    
    
}

public void pop() {
    if(stack1.peek()==stack2.peek())
         stack2.pop();
        stack1.pop();
       
}

public int top() {
    return stack1.peek();
}

public int min() {
    return stack2.peek();
}

}

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!