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

用两个栈实现队列功能【剑指offer】

时间:2018-08-17 00:39:25      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:char   cout   栈实现队列   完成   top   node   测试   private   tchar   

题目描述:

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

程序代码:

【方法一】

 1 class Solution
 2 {
 3 public:
 4 
 5     void push(int node) {
 6         stack1.push(node);
 7 
 8 
 9     }
10 
11     int pop() {
12         int a;
13         if (stack2.size() <= 0){
14             while (stack1.size()>0){
15                 a = stack1.top();
16                 stack2.push(a);
17                 stack1.pop();
18             }
19         }
20         a = stack2.top();
21         stack2.pop();
22 
23         return a;
24 
25 
26     }
27 
28 private:
29     stack<int> stack1;
30     stack<int> stack2;
31 };

【方法二】

 1 class Solution
 2 {
 3 public:
 4     int cou = 0;
 5     void push(int node) {
 6         stack1.push_back(node);
 7         stack2.push_back(cou++);
 8     }
 9 
10     int pop() {
11         int i = 0;
12         while (stack2[i] == -1)
13         {
14             i++;
15         }
16         stack2[i] = -1;
17         return stack1[i];
18     }
19 
20 private:
21     vector <int> stack1;//存数
22     vector <int> stack2;//地址
23 };

测试用例:

 1 int main()
 2 {
 3     Solution fun;
 4     int a[10] = {1,2,3,0,0,4,0,5,0,0};
 5     int i;
 6     for ( i = 0; i < 10; i++)
 7     {
 8         fun.push(a[i]);
 9     }
10     for ( i = 0; i < 10; i++)
11     {
12         cout << " " << fun.pop() /*<< endl*/;
13     }
14     getchar();
15     return 0;
16 }

 

用两个栈实现队列功能【剑指offer】

标签:char   cout   栈实现队列   完成   top   node   测试   private   tchar   

原文地址:https://www.cnblogs.com/leime/p/9490847.html

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