zoukankan      html  css  js  c++  java
  • 155. Min Stack

    Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.

    • push(x) -- Push element x onto stack.
    • pop() -- Removes the element on top of the stack.
    • top() -- Get the top element.
    • getMin() -- Retrieve the minimum element in the stack.

    Example:

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

    class MinStack:
    
        def __init__(self):
            """
            initialize your data structure here.
            """
            self.s = []
            self.min = []
        def push(self, x: int) -> None:
            self.s.append(x)
            if self.min == []:
                self.min.append(x)
            else:
                if x <= self.min[-1]:
                    self.min.append(x)
            
        def pop(self) -> None:
            if self.s.pop() == self.min[-1]:
                self.min.pop()
            
        def top(self) -> int:
            return self.s[-1]
    
        def getMin(self) -> int:
            return self.min[-1]
    
    
    # Your MinStack object will be instantiated and called as such:
    # obj = MinStack()
    # obj.push(x)
    # obj.pop()
    # param_3 = obj.top()
    # param_4 = obj.getMin()
  • 相关阅读:
    函数式编程
    JSONP
    用javascript实现base64编码器
    图片Ping
    CORS
    深入理解ajax系列第五篇——进度事件
    文件File
    深入理解ajax系列第四篇——FormData
    Blob
    深入理解ajax系列第三篇——响应解码
  • 原文地址:https://www.cnblogs.com/boluo007/p/12609082.html
Copyright © 2011-2022 走看看