美文网首页剑指offer最优解Java版
剑指offer最优解Java版-用两个栈实现队列

剑指offer最优解Java版-用两个栈实现队列

作者: 全菜工程师小辉 | 来源:发表于2019-06-22 12:41 被阅读5次

题目描述

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

解决方案

class Solution {

    static Stack<Integer> stack1 = new Stack<Integer>();
    static Stack<Integer> stack2 = new Stack<Integer>();

    public static void push(int node) {
        stack1.push(node);
    }

    public static int pop() {
        if (!stack2.isEmpty()) {
            return stack2.pop();
        }
        while (!stack1.isEmpty()) {
            stack2.push(stack1.pop());
        }

        return stack2.pop();
    }

    public static void main(String[] args) {

    }

}
哎呀,如果我的名片丢了。微信搜索“全菜工程师小辉”,依然可以找到我

相关文章

网友评论

    本文标题:剑指offer最优解Java版-用两个栈实现队列

    本文链接:https://www.haomeiwen.com/subject/mtwmqctx.html