• [LeetCode] 155. 最小栈


    import java.util.Stack;
    
    public class MinStack {
    
        // 数据栈
        private Stack<Integer> data;
        // 辅助栈
        private Stack<Integer> helper;
    
        /**
         * initialize your data structure here.
         */
        public MinStack() {
            data = new Stack<>();
            helper = new Stack<>();
        }
    
        // 思路 2:辅助栈和数据栈不同步
        // 关键 1:辅助栈的元素空的时候,必须放入新进来的数
        // 关键 2:新来的数小于或者等于辅助栈栈顶元素的时候,才放入(特别注意这里等于要考虑进去)
        // 关键 3:出栈的时候,辅助栈的栈顶元素等于数据栈的栈顶元素,才出栈,即"出栈保持同步"就可以了
    
        public void push(int x) {
            // 辅助栈在必要的时候才增加
            data.add(x);
            // 关键 1 和 关键 2
            if (helper.isEmpty() || helper.peek() >= x) {
                helper.add(x);
            }
        }
    
        public void pop() {
            // 关键 3:data 一定得 pop()
            if (!data.isEmpty()) {
                // 注意:声明成 int 类型,这里完成了自动拆箱,从 Integer 转成了 int,因此下面的比较可以使用 "==" 运算符
                // 参考资料:https://www.cnblogs.com/GuoYaxiang/p/6931264.html
                // 如果把 top 变量声明成 Integer 类型,下面的比较就得使用 equals 方法
                int top = data.pop();
                if(top == helper.peek()){
                    helper.pop();
                }
            }
        }
    
        public int top() {
            if(!data.isEmpty()){
                return data.peek();
            }
            throw new RuntimeException("栈中元素为空,此操作非法");
        }
    
        public int getMin() {
            if(!helper.isEmpty()){
                return helper.peek();
            }
            throw new RuntimeException("栈中元素为空,此操作非法");
        }
    
    }

  • 相关阅读:
    操作系统基础知识
    os库基本介绍
    原型模式
    ASP .NetCore 部署500错误 查看异常详情
    css设置文本自动换行
    SqlServer数据库链接字符串
    Json列表数据查找更新
    VB中将类标记为可序列化
    VB 性能优化点
    参加公司工作总结会要准备的内容 IT 技术部
  • 原文地址:https://www.cnblogs.com/doyi111/p/12879424.html
Copyright © 2020-2023  润新知