当前位置:   article > 正文

LeetCode232. 用栈实现队列_leetcode232python

leetcode232python

使用栈实现队列的下列操作:

  • push(x) -- 将一个元素放入队列的尾部。
  • pop() -- 从队列首部移除元素。
  • peek() -- 返回队列首部的元素。
  • empty() -- 返回队列是否为空。

示例:

MyQueue queue = new MyQueue();

queue.push(1);
queue.push(2);  
queue.peek();  // 返回 1
queue.pop();   // 返回 1
queue.empty(); // 返回 false

说明:

  • 你只能使用标准的栈操作 -- 也就是只有 push to toppeek/pop from topsize, 和 is empty 操作是合法的。
  • 你所使用的语言也许不支持栈。你可以使用 list 或者 deque(双端队列)来模拟一个栈,只要是标准的栈操作即可。
  • 假设所有操作都是有效的 (例如,一个空的队列不会调用 pop 或者 peek 操作)。

题目分析:用两个栈实现一个队列,假设有两个栈s1,s2,当执行入队操作时,将元素放进栈s1;当执行出队操作时,将栈s2的栈顶元素弹出,如果栈s2为空的话,先将栈s1的所有元素依次弹出并放入s2,再将s2的栈顶元素弹出。判断队列为空的话,只要判断两个栈是否都为空,若都为空,则队列为空,否则队列不为空。返回队首元素和出队操作类似,返回栈s2的栈顶元素即可,若栈s2为空,则将栈s1的元素全部压栈,再返回s2栈顶元素。

代码展示:

  1. class MyQueue {
  2. public:
  3. /** Initialize your data structure here. */
  4. MyQueue() {
  5. }
  6. /** Push element x to the back of queue. */
  7. void push(int x) {
  8. s1.push(x);
  9. }
  10. /** Removes the element from in front of queue and returns that element. */
  11. int pop() {
  12. if(s2.empty()){
  13. while(!s1.empty()){
  14. s2.push(s1.top());
  15. s1.pop();
  16. }
  17. }
  18. int temp = s2.top();
  19. s2.pop();
  20. return temp;
  21. }
  22. /** Get the front element. */
  23. int peek() {
  24. if(s2.empty()){
  25. while(!s1.empty()){
  26. s2.push(s1.top());
  27. s1.pop();
  28. }
  29. }
  30. return s2.top();
  31. }
  32. /** Returns whether the queue is empty. */
  33. bool empty() {
  34. if(s1.empty() && s2.empty())
  35. return true;
  36. else
  37. return false;
  38. }
  39. private:
  40. stack<int> s1;
  41. stack<int> s2;
  42. };
  43. /**
  44. * Your MyQueue object will be instantiated and called as such:
  45. * MyQueue obj = new MyQueue();
  46. * obj.push(x);
  47. * int param_2 = obj.pop();
  48. * int param_3 = obj.peek();
  49. * bool param_4 = obj.empty();
  50. */

 

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

闽ICP备14008679号