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

剑指Offer 用两个栈实现队列

时间:2018-07-03 11:57:33      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:tag   href   用两个   题目   describe   while   mes   数字   blank   

时间限制:1秒 空间限制:32768K 热度指数:243863
本题知识点: 队列 

 算法知识视频讲解

题目描述

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
给出代码:
class Solution
{
public:
    void push(int node) {
        
    }

    int pop() {
        
    }

private:
    stack<int> stack1;
    stack<int> stack2;
};

  

栈1读入数字,然后换到栈2,注意当栈2没有数据的时候才从栈1读入数据

 

AC代码:

class Solution
{
public:
    void push(int node) {
        stack1.push(node);
    }

    int pop()
    {
        if(!stack2.empty()) {
            int a = stack2.top();
            stack2.pop();
            return a;
        }
        else {
            while(!stack1.empty()) {
                int k = stack1.top();
                stack2.push(k);
                stack1.pop();
            }
            int a = stack2.top();
            stack2.pop();
            return a;
        }
    }

private:
    stack<int> stack1;
    stack<int> stack2;
};

  

剑指Offer 用两个栈实现队列

标签:tag   href   用两个   题目   describe   while   mes   数字   blank   

原文地址:https://www.cnblogs.com/Hyouka/p/9256901.html

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