用两个栈实现队列

Posted soyosuyang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用两个栈实现队列相关的知识,希望对你有一定的参考价值。

/*
 * 用两个栈实现队列.cpp
 *
 *  Created on: 2018年4月7日
 *      Author: soyo
 */
#include<iostream>
#include<stack>
using namespace std;
int main()
{
    void MakeQueue(int a[],int m);
    int a[]={1,2,3,4,5};
    int num;
    num=sizeof(a)/sizeof(int);
    cout<<"生成的队列最后输出为:"<<endl;
   MakeQueue(a,num);
}
void MakeQueue(int a[],int m)
{
      stack<int>s1;
      stack<int>s2;
        int i,temp;
        for(i=0;i<m;i++)
            {

            s1.push(a[i]);
            }
        for(i=0;i<m;i++)
        {
              temp=s1.top();
              s2.push(temp);
              s1.pop();
        }
        for(i=0;i<m;i++)
        {
            temp=s2.top();
            cout<<temp<<" ";
            s2.pop();
        }
}

结果:

生成的队列最后输出为:
1 2 3 4 5 

 

以上是关于用两个栈实现队列的主要内容,如果未能解决你的问题,请参考以下文章

《剑指Offer——面试题9:用两个栈实现队列》代码

剑指offer-用两个栈实现队列

[剑指offer]面试题7:用两个栈实现队列

《剑指offer》— JavaScript用两个栈实现队列

剑指offer---用两个栈实现队列

用两个栈实现一个队列