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

笔试题:用两个栈实现队列

时间:2015-09-01 01:45:14      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:两个栈实现队列

#include <iostream>
#include <stack>
using namespace std;

template<typename T>
class QUEUE
{
    public:
    QUEUE(){}
    ~QUEUE(){}
    void APPEND(const T val)
    {
        while(st2.empty()==false)
        {
        //我们只用st2保存数据,st1作为中间交换桥梁。
        //首先将st2中的数据逆序保存在st1中。
        st1.push(st2.top());
        st2.pop();
        }
        //然后将输入的值放在st1得顶部。  
        st1.push(val);
        while(st1.empty()==false)
        {
            //此刻再将st1中的数据全部放到st2中,
            //恰恰保证了刚才的新val是在底部,实现了
            //队列先进后出的思想。
            st2.push(st1.top());
            st1.pop();
        }
    }
    int DELHED()
    {
        int temp = st2.top();
        st2.pop();      
        return temp;
    }
    void Printf()
    {
        stack<int> st3 = st2;
        //打印的话,为了不影响原来的栈,选择使用了一个临时变量。
        while(st3.empty()==false)
        {
            cout<<st3.top()<<"  ";
            st3.pop();
        }
        cout<<endl;
    }
    private:
    stack<T> st1;
    stack<T> st2;
};

int main()
{
    QUEUE<int> qe;
    for(int i=0;i<10;i++)
    {
        qe.APPEND(i);       
    }
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    qe.DELHED();
    qe.Printf();
    return 0;
}

技术分享

版权声明:本文为博主原创文章,未经博主允许不得转载。

笔试题:用两个栈实现队列

标签:两个栈实现队列

原文地址:http://blog.csdn.net/liuhuiyan_2014/article/details/48146113

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