码迷,mamicode.com
首页 > 其他好文 > 详细

225 Implement Stack using Queues

时间:2015-07-07 07:04:48      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

这道题一般既可以用一个queue也可以用2个queue来解决 这里使用一个queue来解决 代码如下

class Stack:
    # initialize your data structure here.
    def __init__(self):
        self.stack = []

    # @param x, an integer
    # @return nothing
    def push(self, x):
        self.stack.append(x)

    # @return nothing
    def pop(self):
        for i in range(0,len(self.stack) - 1):
            self.stack.append(self.stack.pop(0))
        self.stack.pop(0)

    # @return an integer
    def top(self):
        return self.stack[-1]

    # @return an boolean
    def empty(self):
        return self.stack == []

 

225 Implement Stack using Queues

标签:

原文地址:http://www.cnblogs.com/dapanshe/p/4625856.html

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