码迷,mamicode.com
首页 > 编程语言 > 详细

[leetcode] Min Stack @ Python

时间:2014-11-12 13:44:19      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   div   on   log   

原题地址:https://oj.leetcode.com/problems/min-stack/

解题思路:开辟两个栈,一个栈是普通的栈,一个栈用来维护最小值的队列。

代码:

class MinStack:
    # @param x, an integer
    def __init__(self):
        self.stack1 = []
        self.stack2 = []
    # @return an integer
    def push(self, x):
        self.stack1.append(x)
        if len(self.stack2) == 0 or x <= self.stack2[len(self.stack2)-1]:
            self.stack2.append(x)

    # @return nothing
    def pop(self):
        top = self.stack1[len(self.stack1)-1]
        self.stack1.pop()
        if top == self.stack2[len(self.stack2)-1]:
            self.stack2.pop()
        
    # @return an integer
    def top(self):
        return self.stack1[len(self.stack1)-1]

    # @return an integer
    def getMin(self):
        return self.stack2[len(self.stack2)-1]

 

[leetcode] Min Stack @ Python

标签:style   blog   http   color   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/zuoyuan/p/4091870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!