开始大意了,这道题目居然做错了:
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; };