代码随想录刷题day10

文章介绍了如何使用栈来实现队列以及如何用队列实现栈。在栈实现队列的方法中,利用两个栈,一个用于入队(push),另一个用于出队(pop和peek)。在队列实现栈时,通过将队列中除最后一个元素外的所有元素重新入队,使队首元素成为栈顶元素。
摘要由CSDN通过智能技术生成

学习目标:

  1. 用栈实现队列:

题目:栈实现队列

题解:

1)用双栈,一个出一个入,出栈用来表示pop和peek函数

代码:

class MyQueue {

    Deque<Integer> inStack;
    Deque<Integer> outStack;
    public MyQueue() {
        inStack = new ArrayDeque<Integer>();
        outStack = new ArrayDeque<Integer>();

    }
    
    public void push(int x) {
        inStack.push(x);

    }
    
    public int pop() {
        if (outStack.isEmpty()){
            in2out();
        }
        return outStack.pop();

    }
    
    public int peek() {
        if (outStack.isEmpty()){
            in2out();
        }
        return outStack.peek();

    }
    
    public boolean empty() {
        return inStack.isEmpty() && outStack.isEmpty();

    }

    public void in2out(){
        while (!inStack.isEmpty()){
            outStack.push(inStack.pop());
        }
    }
}
  1. 用队列实现栈

题目:

题解:

1)用一个队列即可实现栈,让队列位于最后一位之前的所有元素都重新输入队列,这样位于队列首位的就是栈顶元素。

代码:


/**
 * Your MyStack object will be instantiated and called as such:
 * MyStack obj = new MyStack();
 * obj.push(x);
 * int param_2 = obj.pop();
 * int param_3 = obj.top();
 * boolean param_4 = obj.empty();
 */

 class MyStack {
    // Deque 接口继承了 Queue 接口
    // 所以 Queue 中的 add、poll、peek等效于 Deque 中的 addLast、pollFirst、peekFirst
    Deque<Integer> que1;
    /** Initialize your data structure here. */
    public MyStack() {
        que1 = new ArrayDeque<>();
    }
    
    /** Push element x onto stack. */
    public void push(int x) {
        que1.addLast(x);
    }
    
    /** Removes the element on top of the stack and returns that element. */
    public int pop() {
        int size = que1.size();
        size--;
        // 将 que1 导入 que2 ,但留下最后一个值
        while (size-- > 0) {
            que1.addLast(que1.peekFirst());
            que1.pollFirst();
        }

        int res = que1.pollFirst();
        return res;
    }
    
    /** Get the top element. */
    public int top() {
        return que1.peekLast();
    }
    
    /** Returns whether the stack is empty. */
    public boolean empty() {
        return que1.isEmpty();
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值