代码随想录day9:栈与队列理论知识+栈实现队列+队列实现栈

本文介绍了如何利用栈的数据结构特性实现队列,包括基本操作如入队、出队、查看队首以及判断队列空的实现方法,并提供了Java代码示例。
摘要由CSDN通过智能技术生成

栈与队列理论知识

队列是先进先出,栈是先进后出

栈实现队列

思路

使用栈实现队列的一系列操作:放进去,拿出来,第一个元素,是否为空

因为栈只能单入单出,所以用两个出口相反的栈可以等效成一个队列。

输入数据时,直接放进输入栈就可以;

输出数据时,需要先判断输出栈是否为空,优先输出输出栈的元素,如果输出栈为空,则需先把输入栈的元素全部导入输出栈,再从输出栈导出元素;

判断队列为空需要判断输入栈和输出栈两个栈是否为空;

取首位元素,和输出数据功能类似,但是不用取出来。

代码

class MyQueue {

    Stack<Integer> stackIn;
    Stack<Integer> stackOut;

    /** Initialize your data structure here. */
    public MyQueue() {
        stackIn = new Stack<>(); // 负责进栈
        stackOut = new Stack<>(); // 负责出栈
    }
    
    /** Push element x to the back of queue. */
    public void push(int x) {
        stackIn.push(x);
    }
    
    /** Removes the element from in front of queue and returns that element. */
    public int pop() {    
        dumpstackIn();
        return stackOut.pop();
    }
    
    /** Get the front element. */
    public int peek() {
        dumpstackIn();
        return stackOut.peek();
    }
    
    /** Returns whether the queue is empty. */
    public boolean empty() {
        return stackIn.isEmpty() && stackOut.isEmpty();
    }

    // 如果stackOut为空,那么将stackIn中的元素全部放到stackOut中
    private void dumpstackIn(){
        if (!stackOut.isEmpty()) return; 
        while (!stackIn.isEmpty()){
                stackOut.push(stackIn.pop());
        }
    }
}

队列实现栈

思路

每offer一个数a进来,都重新排列,把数a放在队列的队首,那可以不动a,把除了a其他的数出去重新进来。

代码

class MyStack {
    Queue<Integer>queue;
    public MyStack() {
        queue = new LinkedList<>();

    }
    
    public void push(int x) {
        queue.offer(x);
        int size=queue.size();
        while(size-->1)
        queue.offer(queue.poll());
    }
    
    public int pop() {
        return queue.poll();
    }
    
    public int top() {
        return queue.peek();
    }
    
    public boolean empty() {
        return queue.isEmpty();
    }
}

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值