当前位置:   article > 正文

详解两个队列实现一个栈(python实现——经典面试题)_使用两个队列数据结构实现一个栈,要求实现栈的出栈和进栈操作

使用两个队列数据结构实现一个栈,要求实现栈的出栈和进栈操作

1、任务详解

       使用两个队列数据结构实现一个栈,要求实现栈的出栈和进栈操作。

2、解题思路

       push()操作:

       为了保证先进栈的元素一直在栈底,需要将两个队列交替使用,才能满足需求。因此,想法是,我们只在空的那个队列上添加元素,然后把非空的那个队列中的元素全部追加到当前这个队列。这样一来,我们又得到一个空的队列,供下一次添加元素。

       pop()操作:

       因为在添加元素时,我们已经按照进栈的先后顺序把后进栈的元素放在一个队列的头部,所以出栈操作时,我们只需要找到那个非空的队列,并依次取出数据即可。

3、代码如下

  1. class StackWithTwoQueues(object):
  2. def __init__(self):
  3. self._queue1 = []
  4. self._queue2 = []
  5. def push(self,x):
  6. if len(self._queue1) == 0:
  7. self._queue1.append(x)
  8. elif len(self._queue2) == 0:
  9. self._queue2.append(x)
  10. if len(self._queue2) == 1 and len(self._queue1) >= 1:
  11. while self._queue1:
  12. self._queue2.append(self._queue1.pop(0))
  13. elif len(self._queue1) == 1 and len(self._queue2) > 1:
  14. while self._queue2:
  15. self._queue1.append(self._queue2.pop(0))
  16. def pop(self):
  17. if self._queue1:
  18. return self._queue1.pop(0)
  19. elif self._queue2:
  20. return self._queue2.pop(0)
  21. else:
  22. return None
  23. def getStack(self):
  24. print("queue1",self._queue1)
  25. print("queue2", self._queue2)
  26. sta = StackWithTwoQueues()
  27. sta.push(1)
  28. sta.getStack()
  29. sta.push(2)
  30. sta.getStack()
  31. sta.push(3)
  32. sta.getStack()
  33. sta.push(4)
  34. sta.getStack()
  35. print(sta.pop())
  36. sta.getStack()
  37. print(sta.pop())
  38. sta.getStack()
  39. print(sta.pop())
  40. sta.getStack()

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/614288
推荐阅读
相关标签
  

闽ICP备14008679号