对前面的数组模拟队列的优化,充分利用数组。因此将数组看做是一个环形的。(通过取模的方式来实现

    分析说明:

    1. 尾索引的下一个为头索引时表示队列满,即将队列容量空出一个作为约定,这个在做判断队列满的时候需要注意

      1. rear + 1)% maxSize == front 满<br /> rear == front
    2. 分析示意图:

      image.png

    代码实现:

    1. package com.atguigu.sparseArray;
    2. import java.util.Scanner;
    3. /**
    4. * 模拟环形队列
    5. * @author Dxkstart
    6. * @create 2021-09-30-8:43
    7. */
    8. public class CirceArrayQueue {
    9. public static void main(String[] args) {
    10. Scanner scanner = new Scanner(System.in);
    11. //测试数组模拟环形队列
    12. //创建一个队列
    13. CirceArray circeArray = new CirceArray(5);//这里设置5,但是队列最大有效数据个数为4
    14. boolean b = true;
    15. while (b) {
    16. System.out.println("请选择功能:");
    17. System.out.println("1.显示队列");
    18. System.out.println("2.添加数据到队列");
    19. System.out.println("3.从队列取出数据");
    20. System.out.println("4.查看队列头的数据");
    21. System.out.println("5.退出程序");
    22. int key = scanner.nextInt();//用户输入数字选择功能
    23. switch (key) {
    24. case (1):
    25. circeArray.showQueue();
    26. System.out.println();
    27. break;
    28. case (2):
    29. System.out.println("请输入一个数字");
    30. int value = scanner.nextInt();//用户输入队列的数据
    31. circeArray.addQueue(value);
    32. System.out.println();
    33. break;
    34. case (3):
    35. try {
    36. System.out.println("取出的数据是:" + circeArray.getQueue());
    37. } catch (Exception e) {
    38. System.out.println(e.getMessage());
    39. }
    40. System.out.println();
    41. break;
    42. case (4):
    43. try {
    44. System.out.println("队列头数据为:" + circeArray.headQueue());
    45. } catch (Exception e) {
    46. System.out.println(e.getMessage());
    47. }
    48. System.out.println();
    49. break;
    50. case (5):
    51. b = false;
    52. break;
    53. default:
    54. break;
    55. }
    56. }
    57. System.out.println("程序退出!");
    58. }
    59. }
    60. class CirceArray{
    61. private int maxSize;//表示数组的最大容量
    62. /*
    63. front 变量的含义做一个调整:front就指向队列的第一个元素,也就是说arr[front]就是队列的第一个元素
    64. front的初始值 = 0
    65. */
    66. private int front;
    67. /*
    68. rear 变量的含义做一个调整:rear指向队列的最后一个元素的后一个位置。因为希望空出一个空间作为约定
    69. rear的初始值 = 0
    70. */
    71. private int rear;//队列尾
    72. private int[] arr;//该数组用于存放数据,模拟队列
    73. public CirceArray(int arrMaxSize){
    74. maxSize = arrMaxSize;
    75. arr = new int[maxSize];
    76. }
    77. //判断队列是否已满
    78. public boolean isFull() {
    79. return (rear + 1) % maxSize == front;
    80. }
    81. //判断队列是否为空
    82. public boolean isEmpty() {
    83. return rear == front;
    84. }
    85. //添加数据到队列
    86. public void addQueue(int n) {
    87. //先判断队列是否已满
    88. if (isFull()) {
    89. System.out.println("队列已满,不能再添加啦!");
    90. return;
    91. }
    92. //直接将数据加入
    93. arr[rear] = n;
    94. //将rear后移一位,这里必须考虑取模,因为是环形队列
    95. rear = (rear + 1) % maxSize;
    96. System.out.println("添加成功!");
    97. }
    98. //获取出队列的数据,出队列,先进先出
    99. public int getQueue() {
    100. //先判断队列是否为空
    101. if (isEmpty()) {
    102. //通过抛出异常来处理
    103. throw new RuntimeException("队列为空呢!");
    104. }
    105. //这里需要分析出front是指向队列的第一个元素
    106. //1.先把front对应的值保存在一个临时变量中
    107. //2.将front后移
    108. //3.返回临时变量的值
    109. int value = arr[front];
    110. front = (front + 1) % maxSize;
    111. return value;
    112. }
    113. //显示队列的所有数据
    114. public void showQueue() {
    115. //遍历
    116. if (isEmpty()) {
    117. System.out.println("队列为空,不能遍历");
    118. return;
    119. }
    120. //思路:从front开始遍历,遍历多少个元素
    121. //动脑筋
    122. for (int i = front; i <front + size(); i++) {//遍历多少次这是重点
    123. System.out.printf("arr[%d] = %d\n",i % maxSize,arr[i % maxSize]);
    124. }
    125. }
    126. //求出当前队列中有多少个元素
    127. public int size(){
    128. return (rear + maxSize - front) % maxSize;
    129. }
    130. //显示队列的头数据,注意不是取出数据
    131. public int headQueue() {
    132. if (isEmpty()) {
    133. throw new RuntimeException("队列为空,没有数据");
    134. }
    135. return arr[front % maxSize];
    136. }
    137. }