leetcode—python3 50天刷题 第36题 最小栈

题目描述

设计一个支持 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.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/min-stack
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

解答过程

class MinStack:

    def __init__(self):
        """
        initialize your data structure here.
        """
        self.list1=[]
        self.list2=[]
        

    def push(self, x: int) -> None:
        self.list1.append(x)
        if len(self.list2)==0 or self.list2[-1]>x:
            self.list2.append(x)
        else:
            self.list2.append(self.list2[-1])
        

    def pop(self) -> None:
        self.list1.pop()
        self.list2.pop()
        

    def top(self) -> int:
        if len(self.list1)>0:
            return self.list1[-1]

    def getMin(self) -> int:
        if len(self.list1)>0:
            return self.list2[-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()

执行结果

执行用时 :156 ms, 在所有 Python3 提交中击败了36.01% 的用户
内存消耗 :17.1 MB, 在所有 Python3 提交中击败了5.08%的用户

你可能感兴趣的:(50天刷题)