当前位置:网站首页>155. Min Stack

155. Min Stack

2022-06-22 13:17:00 Sterben_ Da

155. Min Stack

Easy

8363637Add to ListShare

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

Implement the MinStack class:

  • MinStack() initializes the stack object.
  • void push(int val) pushes the element val onto the stack.
  • void pop() removes the element on the top of the stack.
  • int top() gets the top element of the stack.
  • int getMin() retrieves the minimum element in the stack.

Example 1:

Input
["MinStack","push","push","push","getMin","pop","top","getMin"]
[[],[-2],[0],[-3],[],[],[],[]]

Output
[null,null,null,null,-3,null,0,-2]

Explanation
MinStack minStack = new MinStack();
minStack.push(-2);
minStack.push(0);
minStack.push(-3);
minStack.getMin(); // return -3
minStack.pop();
minStack.top();    // return 0
minStack.getMin(); // return -2

Constraints:

  • -231 <= val <= 231 - 1
  • Methods poptop and getMin operations will always be called on non-empty stacks.
  • At most 3 * 104 calls will be made to pushpoptop, and getMin.

class MinStack:

    """
     Refer to others' ideas for solving problems : Build an additional stack , The top of the stack is the minimum 
     Every time you insert data , If the minimum stack is empty or the value to be inserted is less than or equal to the top of the stack , Then press into the minimum stack 
     Every time you remove data , If the minimum stack top element is equal to the data to be removed , Then move out of the minimum stack 
    """

    def __init__(self):
        self.stack = []
        self.min_stack = []

    def push(self, val: int) -> None:
        self.stack.append(val)
        if len(self.min_stack) == 0 or self.min_stack[-1] >= val:
            self.min_stack.append(val)

    def pop(self) -> None:
        val = self.stack.pop()
        if len(self.min_stack) > 0 and val <= self.min_stack[-1]:
            self.min_stack.pop()

    def top(self) -> int:
        return self.stack[-1]

    def getMin(self) -> int:
        return self.min_stack[-1]


# Your MinStack object will be instantiated and called as such:
# obj = MinStack()
# obj.push(val)
# obj.pop()
# param_3 = obj.top()
# param_4 = obj.getMin()

原网站

版权声明
本文为[Sterben_ Da]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206221226254124.html