• 【NowCoder】水题-[编程题]猫狗队列


    【NowCoder】水题-[编程题]猫狗队列

    题目

    实现一种猫狗队列的结构,要求如下:

    1. 用户可以调用 add 方法将 cat 或者 dog 放入队列中
    2. 用户可以调用 pollAll 方法将队列中的 cat 和 dog 按照进队列的先后顺序依次弹出
    3. 用户可以调用 pollDog 方法将队列中的 dog 按照进队列的先后顺序依次弹出
    4. 用户可以调用 pollCat 方法将队列中的 cat 按照进队列的先后顺序依次弹出
    5. 用户可以调用 isEmpty 方法检查队列中是否还有 dog 或 cat
    6. 用户可以调用 isDogEmpty 方法检查队列中是否还有 dog
    7. 用户可以调用 isCatEmpty 方法检查队列中是否还有 cat

    思路

    • 加入对象实例,需要添加对象的入队顺序
    • 弹出对象实例,也需要比对dog实例和cat实例的入队顺序

    代码

    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.sql.SQLOutput;
    import java.util.LinkedList;
    import java.util.Queue;
    
    class Dog{
        public String name;
        public int order;// 入队顺序
    
        // 初始化函数
        public Dog(String name,int order)
        {
            this.name = name;
            this.order = order;
        }
    }
    
    class Cat{
        public String name;
        public int order;// 入队顺序
        public Cat(String name,int order)
        {
            this.name = name;
            this.order = order;
        }
    }
    
    class CatDogQueue{
        public Queue<Cat> catQueue = new LinkedList<>();
        public Queue<Dog> dogQueue = new LinkedList<>();
        private int order = 0;// 入队顺序编号
    
        public CatDogQueue()
        {
            // 初始化函数
            catQueue = new LinkedList<>();
            dogQueue = new LinkedList<>();
        }
    
        // 入队的时候一定要添加入队顺序
        public void add(String animal,String id)
        {
            // 将cat类或者dog类的实例 放入队列中
            if(animal.equals("cat"))
            {
                // 将猫实例放入猫队列中
                catQueue.offer(new Cat(animal + " " + id,order));//
                order++;
            }
    
            if(animal.equals("dog"))
            {
                // 将狗实例  送入狗队列中
                dogQueue.offer(new Dog(animal + " " + id,order));
                order++;
            }
        }
    
        // 判断队列是否为空
        public String isEmpty()
        {
            // 猫狗队列都为空 才是空
            return catQueue.isEmpty() && dogQueue.isEmpty()?"yes":"no";
        }
    
        // 判断猫队列是否为空
        public String isCatEmpty()
        {
            return catQueue.isEmpty()?"yes":"no";
        }
    
        // 判断狗队列是个否为空
        public String isDogEmpty()
        {
            return dogQueue.isEmpty()?"yes":"no";
        }
    
        // 出队操作
        public String poll()
        {
            // 首先判断队列是否为空
            if(!catQueue.isEmpty() && !dogQueue.isEmpty())
            {
                // 比较一下猫队列和狗队列 队头元素的入队顺序  顺序小的先出队
                if(catQueue.peek().order < dogQueue.peek().order)
                {
                    return pollCat();
                }
                else {
                    return pollDog();
                }
            }
            else if(!catQueue.isEmpty())
            {
                return pollCat();
            }
            else if(!dogQueue.isEmpty())
            {
                return pollDog();
            }
            else {
                return "";
            }
        }
    
        // 猫出队
        public String pollCat(){
            return catQueue.poll().name;
        }
    
        // 狗出队
        public String pollDog(){
            return dogQueue.poll().name;
        }
    
    }
    
    public class Main {
        public static void main(String[] args) throws IOException {
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            int n = Integer.parseInt(br.readLine());
            CatDogQueue queue = new CatDogQueue();
    
            for(int i = 0; i < n; i++)
            {
                String[] params = br.readLine().trim().split(" ");// 按照空格分割
                if(params[0].equals("add"))
                {
                    queue.add(params[1],params[2]);
                }
                else if(params[0].equals("pollAll"))
                {
                    while(queue.isEmpty().equals("no"))
                    {
                        System.out.println(queue.poll());
                    }
                }
                else if(params[0].equals("pollCat"))
                {
                    while(queue.isCatEmpty().equals("no"))
                    {
                        System.out.println(queue.pollCat());
                    }
                }
                else if(params[0].equals("pollDog"))
                {
                    while(queue.isDogEmpty().equals("no"))
                    {
                        System.out.println(queue.pollDog());
                    }
                }
                else if(params[0].equals("isEmpty"))
                {
                    System.out.println(queue.isEmpty());
                }
                else if(params[0].equals("isCatEmpty"))
                {
                    System.out.println(queue.isCatEmpty());
                }
                else if(params[0].equals("isDogEmpty"))
                {
                    System.out.println(queue.isDogEmpty());
                }
            }
    
        }
    }
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
  • 相关阅读:
    2022年最新java大厂面试真题剖析:如何设计一个高并发系统?
    海外监管机构出手制裁DeFi,去中心化成伪命题了吗?波卡将何去何从?
    自制摩斯电码连接器【CW-LINK】
    【Mybatis】搭建一个Mybatis框架需要做什么
    C#:实现堆排序算法(附完整源码)
    三层神经网络的输出公式,神经网络层数怎么算
    Android中Spi机制的使用及源码原理解析
    【Web】Java反序列化之再看CC1--LazyMap
    基于多目标优化算法的电力系统分析(Matlab代码实现)
    详述MIMIC 的ICU患者检测时间信息表(十六)
  • 原文地址:https://blog.csdn.net/qq_44653420/article/details/126804025