首页 > 其他 > 详细

两个栈实现队列,开始做错了 —— 剑指Offer

时间:2018-02-08 10:53:04      阅读:267      评论:0      收藏:0      [点我收藏+]

开始大意了,这道题目居然做错了:

https://www.nowcoder.net/practice/54275ddae22f475981afa2244dd448c6?tpId=13&tqId=11158&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking

 

后来第二次,做对了:

技术分享图片

题目描述

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。
 
 
实现如下:
pop2是原来做错的方法,pop是改正的做法。
 
class Solution
{
public:
    void push(int node) {
        stack1.push(node);
    }
    
    int pop() {
        if (stack2.empty()) {
            while(!stack1.empty()) {
                   int tmp = stack1.top();
                stack1.pop();
                stack2.push(tmp);
            }
        }
        int ret = stack2.top();
        stack2.pop();
        return ret;
    }

    int pop2() {
        while(!stack1.empty()) {
            int tmp = stack1.top();
            stack1.pop();
            stack2.push(tmp);
        }
        int ret = stack2.top();
        stack2.pop();
        return ret;
    }

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

 

 

 

两个栈实现队列,开始做错了 —— 剑指Offer

原文:https://www.cnblogs.com/charlesblc/p/8430449.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!