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

040 两个队列生成一个栈

时间:2021-01-04 11:05:13      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:height   min   init   cell   栈的实现   com   一个栈   bin   val   

想要实现两个队列生成一个栈,需要先了解队列和栈的特性:

  • 队列,先进先出。
  • 栈,后进先出。

使用两个队列生成一个栈的实现思路为:

技术图片

 

 

代码实现如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import queue
 
 
class Stack(object):
 
    def __init__(self):
        self.master_queue = queue.Queue()
        self.minor_queue = queue.Queue()
 
    def push(self, value):
        """
        入栈
        :param value:
        :return:
        """
        self.master_queue.put(value)
 
    def pop(self):
        """
        出栈
        :return:
        """
        if self.master_queue.qsize() == 0:
            return None
 
        while True:
            if self.master_queue.qsize() == 1:
                value = self.master_queue.get()
                break
            self.minor_queue.put(self.master_queue.get())
 
        self.master_queue, self.minor_queue = self.minor_queue, self.master_queue
 
        return value
 
 
obj = Stack()
obj.push(‘武沛齐‘)
obj.push(‘Alex‘)
obj.push(‘肖峰‘)
 
print(obj.pop())
print(obj.pop())
print(obj.pop())

  

 

040 两个队列生成一个栈

标签:height   min   init   cell   栈的实现   com   一个栈   bin   val   

原文地址:https://www.cnblogs.com/abdm-989/p/14214035.html

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