5、 用两个栈来实现一个队列 过
完成队列的Push和Pop操作。 队列中的元素为int类型。
1、很简单的一道题
运行时间:3ms 占用内存:376k
public: void push(int node) { stack1.push(node); } int pop() { while(stack1.size() != 1){ stack2.push(stack1.top()); stack1.pop(); }
完成队列的Push和Pop操作。 队列中的元素为int类型。
运行时间:3ms 占用内存:376k
public: void push(int node) { stack1.push(node); } int pop() { while(stack1.size() != 1){ stack2.push(stack1.top()); stack1.pop(); }