zoukankan      html  css  js  c++  java
  • [LeetCode] 155. 最小栈

    题目链接 : https://leetcode-cn.com/problems/min-stack/

    题目描述:

    设计一个支持 push,pop,top 操作,并能在常数时间内检索到最小元素的栈。

    • push(x) -- 将元素 x 推入栈中。
    • pop() -- 删除栈顶的元素。
    • top() -- 获取栈顶元素。
    • getMin() -- 检索栈中的最小元素。

    示例:

    示例:

    MinStack minStack = new MinStack();
    minStack.push(-2);
    minStack.push(0);
    minStack.push(-3);
    minStack.getMin();   --> 返回 -3.
    minStack.pop();
    minStack.top();      --> 返回 0.
    minStack.getMin();   --> 返回 -2.
    

    思路:

    思路一:使用两个栈

    一个栈记录 压入元素

    一个栈记录 最小元素

    思路二 : 使用一个栈[1]

    当有更小元素进入栈中, 把先前最小值压入栈中

    代码:

    class MinStack:
    
        def __init__(self):
            """
            initialize your data structure here.
            """
            self.stack = []
            self.min_num = []
            
    
        def push(self, x: int) -> None:
            self.stack.append(x)
            if len(self.min_num) == 0 or self.min_num[-1] >= x:
                self.min_num.append(x)
            
    
        def pop(self) -> None:
            if self.stack:
                tmp  = self.stack.pop()
                if self.min_num[-1] == tmp:
                    self.min_num.pop()
                return tmp
            
    
        def top(self) -> int:
            if self.stack:
                return self.stack[-1]
            
    
        def getMin(self) -> int:
            return self.min_num[-1]
    

    思路二:

    class MinStack:
    
        def __init__(self):
            """
            initialize your data structure here.
            """
            self.stack = []
            self.cur_min = float("inf")
            
    
        def push(self, x: int) -> None:
            if x <= self.cur_min:
                self.stack.append(self.cur_min)
                self.cur_min = x
            self.stack.append(x)
            
    
        def pop(self) -> None:
            if self.stack.pop() == self.cur_min:
                self.cur_min = self.stack.pop()
            
    
        def top(self) -> int:
            return self.stack[-1]
            
    
        def getMin(self) -> int:
            return self.cur_min
    

    java

    class MinStack {
        /**
         * initialize your data structure here.
         */
        Deque<Integer> stack = new LinkedList<>();
        int min = Integer.MAX_VALUE;
    
        public MinStack() {
        }
    
        public void push(int x) {
            if (min >= x) {
                stack.push(min);
                min = x;
            }
            stack.push(x);
        }
    
        public void pop() {
            if (stack.pop() == min) min = stack.pop();
        }
    
        public int top() {
            return stack.peek();
        }
    
        public int getMin() {
            return min;
        }
    }
    

    参考资料:


    1. https://leetcode.com/problems/min-stack/discuss/49014/Java-accepted-solution-using-one-stack ↩︎

  • 相关阅读:
    mysql导出导入数据库和表学习笔记
    gitlab+jenkins学习笔记
    mysql数据库的备份与恢复
    第十二天python3 匿名函数
    第十三天python3 生成器yield
    [Todo]Java反序列化-weblogic
    bcrypt浅析
    AWD准备
    Linux下提权练习
    wordpress站点被恶意重定向
  • 原文地址:https://www.cnblogs.com/powercai/p/11284317.html
Copyright © 2011-2022 走看看