【LeetCode刷题】栈——最小栈

题目

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

思想很简单:“以空间换时间”,使用辅助栈是常见的做法。

code 

class MinStack:

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

    def push(self, x):
        """
        :type x: int
        :rtype: None
        """
        self.data_stack.append(x)
        if len(self.min_stack) == 0 or x <= self.min_stack[-1]:
            self.min_stack.append(x)
        else:
            self.min_stack.append(self.min_stack[-1])

    def pop(self):
        """
        :rtype: None
        """
        if self.data_stack:
            self.min_stack.pop()
            return self.data_stack.pop()

    def top(self):
        """
        :rtype: int
        """
        if self.data_stack:
            return self.data_stack[-1]

    def getMin(self):
        """
        :rtype: int
        """
        if self.data_stack:
            return self.min_stack[-1]

# Your MinStack object will be instantiated and called as such:
obj = MinStack()
obj.push(1)
obj.push(-3)
obj.push(2)
print(obj.pop())
param_3 = obj.top()
param_4 = obj.getMin()
print(param_3)
print(param_4)
print(obj.data_stack)
obj.pop()
print(obj.data_stack)
obj.push(0)
print(obj.data_stack)
print(obj.getMin())

 

发布了83 篇原创文章 · 获赞 14 · 访问量 3万+

猜你喜欢

转载自blog.csdn.net/weixin_38121168/article/details/103221591