用2个栈实现队列

Posted fanguangdexiaoyuer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用2个栈实现队列相关的知识,希望对你有一定的参考价值。

描述

用两个栈来实现一个队列,完成队列的Push和Pop操作。 队列中的元素为int类型。

 

解析

其实就是将栈的先进后出,变为队列的先进先出。

stack1用来入栈。当push stack1时,将stack1的所有元素放到stack2,直到stack1为空。再将新值push进去,再将stack2的所有值再push回来到stack1。

 

代码

 

import java.util.Stack;

public class Solution {
    Stack<Integer> stack1 = new Stack<Integer>();
    Stack<Integer> stack2 = new Stack<Integer>();
    
    public void push(int node) {
        if (stack1.isEmpty()) {
            stack1.push(node);
        } else {
            while (!stack1.isEmpty()) {
                stack2.push(stack1.pop());
            }
            stack1.push(node);
            while (!stack2.isEmpty()) {
                stack1.push(stack2.pop());
            }
        }
    }
    
    public int pop() {
        //这里注意下返回值为null的情况,不能转为int
        return stack1.pop();
    }
}

 

以上是关于用2个栈实现队列的主要内容,如果未能解决你的问题,请参考以下文章

算法_栈实现队列篇

算法_栈实现队列篇

算法(第四版)C#题解——1.3.49 用 6 个栈实现一个 O 队列

用俩个栈实现队列

用有限个栈模拟常数效率操作的队列

剑指Offer - 面试题9:用俩个栈实现队列