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

剑指Offer——用两个栈实现队列

时间:2017-10-27 13:13:57      阅读:101      评论:0      收藏:0      [点我收藏+]

标签:操作   private   idt   turn   题目   image   png   ima   队列   

题目描述:

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。


分析:

技术分享

 

代码:

 1 class Solution {
 2 public:
 3     void push(int node) {
 4         stack1.push(node);
 5     }
 6 
 7     int pop() {
 8         if(stack2.empty()) {
 9             while(!stack1.empty()) {
10                 stack2.push(stack1.top());
11                 stack1.pop();
12             }
13         }
14         int t = stack2.top();
15         stack2.pop();
16         return t;
17     }
18 
19 private:
20     stack<int> stack1;
21     stack<int> stack2;
22 };

 

剑指Offer——用两个栈实现队列

标签:操作   private   idt   turn   题目   image   png   ima   队列   

原文地址:http://www.cnblogs.com/yjcheng1314/p/7741117.html

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