代码随想录算法训练营第十天

栈与队列相关

232.用栈实现队列

参考文章
题目链接

个人题解

class MyQueue {
    Stack<Integer> sIn;
    Stack<Integer> sOut;

    public MyQueue() {
        sIn = new Stack<>();
        sOut = new Stack<>();
    }

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

    public int pop() {
        if (!sOut.isEmpty()) {
            return sOut.pop();
        } else {
            while (!sIn.isEmpty()) {
                sOut.push(sIn.pop());
            }
            return sOut.pop();
        }
    }

    public int peek() {
        if (!sOut.isEmpty()) {
            return sOut.peek();
        } else {
            while (!sIn.isEmpty()) {
                sOut.push(sIn.pop());
            }
            return sOut.peek();
        }
    }

    public boolean empty() {
        return sIn.isEmpty() && sOut.isEmpty();
    }
}

225. 用队列实现栈

参考文章
题目链接

个人题解

class MyStack {
    Queue<Integer> q1;

    public MyStack() {
        q1 = new LinkedList<>();
    }

    public void push(int x) {
        q1.offer(x);
    }

    public int pop() {
        getInteger();
        return q1.poll();
    }

    private void getInteger() {
        for (int i = 0; i < q1.size() - 1; i++) {
            q1.offer(q1.poll());
        }
    }

    public int top() {
        getInteger();
        Integer poll = q1.poll();
        q1.offer(poll);
        return poll != null ? poll.intValue() : -1;
    }

    public boolean empty() {
        return q1.isEmpty();
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值