Day10| 232.用栈实现队列 | 225. 用队列实现栈

文章介绍了如何使用栈来模拟队列的操作,以及反过来,用队列实现栈的功能。在栈实现队列的代码中,主要通过两个栈来保持队列的FIFO特性;而在队列实现栈的代码中,利用队列的特性重新调整元素顺序以达到栈的操作效果。
摘要由CSDN通过智能技术生成

● 232.用栈实现队列

dump:转储

在pop的时候,输出栈如果为空,就把进栈数据全部导入进来,这样就不会影响出栈的顺序

​
class MyQueue {
​
    Stack<Integer> stackIn;
    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();//peek 对应 peek
    }
​
    public boolean empty() {
    return stackOut.isEmpty()&&stackIn.empty();
    }
    public void dumpStackIn(){
        if(!stackOut.isEmpty()) return;
        //如果出栈没有元素,才去push(stackIn.pop());
        while(!stackIn.empty()){
            stackOut.push(stackIn.pop());
        }
    }
}
​
/**
 * 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();
 */

● 225. 用队列实现栈

class MyStack {
    Queue<Integer> queue;
    
    public MyStack() {
        queue = new LinkedList<>();
    }
    
    public void push(int x) {
        queue.add(x);
    }
    
    public int pop() {
        rePosition();
        return queue.poll();
    }
    
    public int top() {
        rePosition();
        int result = queue.poll();
        queue.add(result);
        return result;
    }
    
    public boolean empty() {
        return queue.isEmpty();
    }
​
    public void rePosition(){
        int size = queue.size();
        size--;//因为我们后面的
        while(size-->0)
            queue.add(queue.poll());
    }
}
​今天是我感觉最轻松的一天,终于可以做其他的事情了
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值