首页 > 其他分享 >队列的模拟及环形队列思路

队列的模拟及环形队列思路

时间:2022-09-24 15:46:09浏览次数:75  
标签:队列 环形 System int rear println 模拟 out

定义

  • 队列是一个有序列表,可以用数组或是链表来实现。
  • 遵循先入先出的原则。即:先存入队列的数据,要先取出。后存入的要后取出

模拟思路

  • 队列本身是有序列表,若使用数组的结构来存储队列的数据,则队列数组的声明如下图, 其中 maxSize 是该队列的最大容量

  • 因为队列的输出、输入是分别从前后端来处理,因此需要两个变量 front及 rear分别记录队列前后端的下标,front 会随着数据输出而改变,而 rear则是随着数据输入而改变,如图所示

入队出队操作模拟

当我们将数据存入队列时称为”addQueue”,addQueue 的处理需要有两个步骤:

  • 将尾指针往后移:rear+1 , 当 front == rear 时,队列为空

  • 若尾指针 rear 小于队列的最大下标 maxSize-1,则将数据存入 rear所指的数组元素中,否则无法存入数据。rear == maxSize - 1时,队列满

注意:front指向的是队列首元素的前一个位置

实现代码

import java.util.Scanner;
 
public class ArrayQueueDemo {
    public static void main(String[] args) {
        ArrayQueue queue = new ArrayQueue(3);
        Scanner scanner = new Scanner(System.in);
        boolean flag = true;
        while (flag){
            System.out.println("输入a(add)添加数据");
            System.out.println("输入g(get)取出数据");
            System.out.println("输入s(show)显示所有数据");
            System.out.println("输入h(head)显示头部数据");
            System.out.println("输入e(exit)退出程序");
            char c = scanner.next().charAt(0);
            switch (c){
                case 'a':
                    System.out.println("请输入数据");
                    int num = scanner.nextInt();
                    queue.addNum(num);
                    break;
                case 'g':
                    try {
                        queue.getQueue();
                        System.out.println("取出成功");
                    }catch (Exception e){
                        System.out.println(e.getMessage());
                    }
                    break;
                case 's':
                    queue.showQueue();
                    break;
                case 'h':
                    try {
                        queue.headQueue();
                    }catch (Exception e){
                        System.out.println(e.getMessage());
                    }
                    break;
                case 'e':
                    flag = false;
                    System.out.println("程序已退出");
                    break;
                default:
                    break;
            }
        }
        scanner.close();
    }
}
 
class ArrayQueue{
    private int maxSize;//队列的大小
    private int front;//指向队列首元素的前一个位置
    private int rear;//指向队列的尾元素
    private int[] arr;//用数组来实现队列
 
    //构造方法初始化
    public ArrayQueue(int maxSize) {
        this.maxSize = maxSize;
        front = -1;//指向的是队列第一个元素的前一个位置
        rear = -1;
        arr = new int[maxSize];
    }
 
    /**
     * 判断队列是否装满
     * @return
     */
    public boolean isFull(){
        return rear == maxSize-1;
    }
 
    /**
     * 判断队列是否为空
     * @return
     */
    public boolean isEmpty(){
        return front == rear;
    }
 
    /**
     * 为队列添加数据
     * @param num
     */
    public void addNum(int num){
        if (isFull()){
            System.out.println("队列已经满了,无法再加入数据");
            return;
        }
        rear++;
        arr[rear] = num;
    }
 
    /**
     * 取出队列中的数据
     * @return
     */
    public int getQueue(){
        if (isEmpty()){
            throw new RuntimeException("队列为空,不能取出数据");
        }
        front++;
        return arr[front]=0;
    }
 
    /**
     * 显示队列的所有数据
     */
    public void showQueue(){
        if (isEmpty()) {
            System.out.println("队列为空,没有数据");
            return;
        }
        for (int i = 0; i<arr.length; i++){
            System.out.printf("arr[%d]=%d\n",i,arr[i]);
        }
    }
 
    /**
     * 显示队列的头数据,注意不是取出数据
     * @return
     */
    public int headQueue(){
        if (isEmpty()){
            throw new RuntimeException("队列为空,没有数据");
        }
        return arr[front+1];
    }
}

  运行结果

 

 

 

 注意:因先入先出的原则,front和rear最终都会在队列顶部,所以上述队列只能一次性使用,没有达到复用的效果,因此我们要用到环形队列

环形队列

思路:

  • front变量含义调整:front变量指向队首元素,初值为0
  • rear变量含义调整:rear变量指向队尾元素的下一个元素,初值为0。规定空出一个位置
  • 队列为空的判定条件:front == rear
  • 队列为满的判定条件:(rear + 1) % maxSize == front
  • 队列中有效元素的个数:(rear - front + maxSize) % maxSize
  • 入队和出队时,都需要让标记对maxSize取模
  • import java.util.Scanner;
     
    public class CyclicArrayQueueDemo {
        public static void main(String[] args) {
            CyclicArrayQueue queue = new CyclicArrayQueue(3);
            Scanner scanner = new Scanner(System.in);
            boolean flag = true;
            while (flag){
                System.out.println("输入a(add)添加数据");
                System.out.println("输入g(get)取出数据");
                System.out.println("输入s(show)显示所有数据");
                System.out.println("输入h(head)显示头部数据");
                System.out.println("输入e(exit)退出程序");
                char c = scanner.next().charAt(0);
                switch (c){
                    case 'a':
                        System.out.println("请输入数据");
                        int num = scanner.nextInt();
                        queue.addNum(num);
                        break;
                    case 'g':
                        try {
                            int n = queue.getQueue();
                            System.out.println("取出的数是:"+n);
                        }catch (Exception e){
                            System.out.println(e.getMessage());
                        }
                        break;
                    case 's':
                        queue.showQueue();
                        break;
                    case 'h':
                        try {
                            queue.headQueue();
                        }catch (Exception e){
                            System.out.println(e.getMessage());
                        }
                        break;
                    case 'e':
                        flag = false;
                        System.out.println("程序已退出");
                        break;
                    default:
                        break;
                }
            }
            scanner.close();
        }
    }
     
    class CyclicArrayQueue {
        private int maxSize;//队列的大小
        private int front;//front变量指向队首元素,初值为0
        private int rear;//rear变量指向队尾元素的下一个元素,初值为0。规定空出一个位置
        private int[] arr;//用数组来实现队列
     
        public CyclicArrayQueue(int maxSize) {
            this.maxSize = maxSize;
            arr = new int[maxSize];
        }
     
        /**
         * 判断队列是否装满
         *
         * @return
         */
        public boolean isFull() {
            return (rear + 1) % maxSize == front;
        }
     
        /**
         * 判断队列是否为空
         *
         * @return
         */
        public boolean isEmpty() {
            return front == rear;
        }
     
        /**
         * 为队列添加数据
         *
         * @param num
         */
        public void addNum(int num) {
            if (isFull()) {
                System.out.println("队列已经满了,无法再加入数据");
                return;
            }
            arr[rear] = num;
            rear = (rear + 1) % maxSize;
        }
     
        /**
         * 取出队列中的数据
         *
         * @return
         */
        public int getQueue() {
            if (isEmpty()) {
                throw new RuntimeException("队列为空,不能取出数据");
            }
            int value = arr[front];
            front = (front + 1) % maxSize;
            return value;
        }
     
        /**
         * 显示队列的所有数据
         */
        public void showQueue() {
            if (isEmpty()) {
                System.out.println("队列为空,没有数据");
                return;
            }
            for (int i = front; i < front + size(); i++) {
                System.out.printf("arr[%d]=%d\n", i % maxSize, arr[i % maxSize]);
            }
        }
     
        public int size() {
            return (rear + maxSize - front) % maxSize;
        }
     
        /**
         * 显示队列的头数据,注意不是取出数据
         * @return
         */
        public int headQueue(){
            if (isEmpty()){
                throw new RuntimeException("队列为空,没有数据");
            }
            return arr[front];
        }
    }
    

      

import java.util.Scanner;   public class ArrayQueueDemo {     public static void main(String[] args) {         ArrayQueue queue = new ArrayQueue(3);         Scanner scanner = new Scanner(System.in);         boolean flag = true;         while (flag){             System.out.println("输入a(add)添加数据");             System.out.println("输入g(get)取出数据");             System.out.println("输入s(show)显示所有数据");             System.out.println("输入h(head)显示头部数据");             System.out.println("输入e(exit)退出程序");             char c = scanner.next().charAt(0);             switch (c){                 case 'a':                     System.out.println("请输入数据");                     int num = scanner.nextInt();                     queue.addNum(num);                     break;                 case 'g':                     try {                         queue.getQueue();                         System.out.println("取出成功");                     }catch (Exception e){                         System.out.println(e.getMessage());                     }                     break;                 case 's':                     queue.showQueue();                     break;                 case 'h':                     try {                         queue.headQueue();                     }catch (Exception e){                         System.out.println(e.getMessage());                     }                     break;                 case 'e':                     flag = false;                     System.out.println("程序已退出");                     break;                 default:                     break;             }         }         scanner.close();     } }   class ArrayQueue{     private int maxSize;//队列的大小     private int front;//指向队列首元素的前一个位置     private int rear;//指向队列的尾元素     private int[] arr;//用数组来实现队列       //构造方法初始化     public ArrayQueue(int maxSize) {         this.maxSize = maxSize;         front = -1;//指向的是队列第一个元素的前一个位置         rear = -1;         arr = new int[maxSize];     }       /**      * 判断队列是否装满      * @return      */     public boolean isFull(){         return rear == maxSize-1;     }       /**      * 判断队列是否为空      * @return      */     public boolean isEmpty(){         return front == rear;     }       /**      * 为队列添加数据      * @param num      */     public void addNum(int num){         if (isFull()){             System.out.println("队列已经满了,无法再加入数据");             return;         }         rear++;         arr[rear] = num;     }       /**      * 取出队列中的数据      * @return      */     public int getQueue(){         if (isEmpty()){             throw new RuntimeException("队列为空,不能取出数据");         }         front++;         return arr[front]=0;     }       /**      * 显示队列的所有数据      */     public void showQueue(){         if (isEmpty()) {             System.out.println("队列为空,没有数据");             return;         }         for (int i = 0; i<arr.length; i++){             System.out.printf("arr[%d]=%d\n",i,arr[i]);         }     }       /**      * 显示队列的头数据,注意不是取出数据      * @return      */     public int headQueue(){         if (isEmpty()){             throw new RuntimeException("队列为空,没有数据");         }         return arr[front+1];     } }

标签:队列,环形,System,int,rear,println,模拟,out
From: https://www.cnblogs.com/wyh518/p/16725753.html

相关文章

  • CSP模拟10
    现在有这样一种感觉:是在留下永远不会在有人看的遗产。T1正解并查集,直接把每次给你的\(x,y\)用并查集合并一下(没有\(y\)就把\(x\)和\(0\)合并一下)并加入答案,如果......
  • Noip模拟赛34
    noip模拟赛34$$给定1\ldotsN的一个排列a,M次操作,操作有两种:1lmr表示将al,al+1,...,ar改为merge(\{a_l,a_{l+1},...,a_m\},\{a_{m+1},a_{m+2},...,a_r\2i,表......
  • CSP-S模拟赛7
    T1.序列问题盯了T1二十分钟,发现只会\(O(n!)\)的暴力,于是溜了。最后一小时想到了\(O(n^2)\)的dp,拿到了(骗到)50分,而且因为我的dp定义比较原始,所以没有办法优化。首先定义\(b......
  • 25th-27th 2022/7/28,2022/7/29,2022/7/30 模拟赛总结15-17
    首先这次是补,因为有个垃圾将我的总结删了它的名字不配出现在我的总结中这三次其实都不算好主要问题是没睡好,读题不仔细以及并没有拼尽全力去打这几点总结应该注重休......
  • 29th 2022/8/1 模拟赛总结18
    这次还行因为这次认真去打,而且在打T2两个钟时,仍旧能坚持下去,最好迎来了胜利不错的,但仍旧有一些不足在T2打完发现过了时,心花怒放,光顾着打暴力,结果没什么分,T1也没有静心......
  • 30th 2022/8/3 模拟赛总结19
    这次不是很烂,但是问题出现我的思路过于繁复,其实就是对前缀和的概念理解出了问题前缀和不一定是形如\(f_r-f_{l-1}\)只要加减的东西有意义,就可以了如\(f_{i,j}-f_{i-1......
  • 31st 2022/8/4 模拟赛总结20
    这次死在了小错误上虽然并没有考砸,但是本来可以考得更好T1想到了正解但是又是一个小问题断送了前程在求答案时,小数据还好,但是大数据。。。总之,就是在求答案是加上了......
  • 20th 2022/7/18 模拟赛总结12
    这次嗯,题目真是没有半点水分,干巴巴一片T1T3省选模拟,T2NOIP,恐怖的是T4???这次估计上紫赛时T1-T4-T2-T3首先读题很久,30min过,然后着手T1,找规律,没有半分,只用仅有的数论知识......
  • 16th 2022/7/14 模拟赛总结9
    这次哈,没有想打的意思,随便打了两个暴力和一个表就发呆了今天讲一个专题,却听不下去,因为讲题者太帅了,根本听不懂,感觉他就是把课件念了一遍然后回到座位,却还在看讲题,嗯最后......
  • 18th 2022/7/15 模拟赛总结10
    这次哈,依然不大想打随便一打,却发现排名居然没掉,其他人摸鱼吗?其实这次比赛题质量不算很高T1是优化,T2是优化+细节,T3是打过类似的找循环,T4是DP优化嗯,因为要回去了所以没......