[leetcode] 232. Implement Queue Using Stacks

文章介绍了一个使用两个栈(stackIn和stackOut)来模拟队列操作的Java实现。push方法将元素放入stackIn,pop和peek方法首先检查stackOut,若为空则将stackIn的所有元素转移到stackOut,然后执行操作。empty方法检查两个栈是否都为空,确定队列是否为空。
摘要由CSDN通过智能技术生成

思路:使用两个栈
stackIn 负责 队列的 入队
stackOut 负责 队列的 出队

每次 q.peek() 或者 q.pop() 的时候都要从 stackOut 中取元素,此时需要看下该栈是否为空,如果为空则把 stackIn 的元素全部加入 stackOut 中来

class MyQueue {
    private Stack<Integer> stackIn;
    private Stack<Integer> stackOut;

    public MyQueue() {
        stackIn = new Stack<>();
        stackOut = new Stack<>();     
    }
    
    public void push(int x) {
        stackIn.push(x);
    }
    
    public int pop() {
        dumpStackIn();
        return stackOut.pop();
    }
    
    public int peek() {
        dumpStackIn();
        return stackOut.peek();
    }
    
    public boolean empty() {
        return (stackIn.isEmpty() && stackOut.isEmpty());
    }

    private void dumpStackIn() {
        if (!stackOut.isEmpty()) return;
        while (!stackIn.isEmpty()) {
            int t = stackIn.pop();
            stackOut.push(t);
        }
    }
}

/**
 * Your MyQueue object will be instantiated and called as such:
 * MyQueue obj = new MyQueue();
 * obj.push(x);
 * int param_2 = obj.pop();
 * int param_3 = obj.peek();
 * boolean param_4 = obj.empty();
 */
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值