码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode:155 最小栈

时间:2020-11-11 16:27:13      阅读:9      评论:0      收藏:0      [点我收藏+]

标签:最小   tco   oid   int   minstack   mat   turn   lse   code   

class MinStack {
    Deque<Integer> stack;
    Deque<Integer> min_stack;
    /** initialize your data structure here. */
    public MinStack() {
        stack = new LinkedList<>();
        min_stack = new LinkedList<>();

    }
    
    public void push(int x) {
        stack.push(x);
        if(min_stack.size()!=0)
            min_stack.push(Math.min(min_stack.peek(),x));
        else{
            min_stack.push(x);
        }
    }
    
    public void pop() {
        stack.pop();
        min_stack.pop();
    }
    
    public int top() {
        return stack.peek();
    }
    
    public int getMin() {
        return min_stack.peek();
    }
}

 

LeetCode:155 最小栈

标签:最小   tco   oid   int   minstack   mat   turn   lse   code   

原文地址:https://www.cnblogs.com/dloooooo/p/13766402.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!