环形队列示意图:
代码如下:CircleArrayQueue.java
package com.laizhenghua.data_structure;
/**
* @description: 环形数组队列
* @author: laizhenghua
* @date: 2021/5/7 22:17
*/
public class CircleArrayQueue {
private int maxSize; // 队列的最大容量
/**
* front 变量的含义做一个调整:front 就指向队列的第一个元素,也就是说array[front]
* front 的初始值 = 0
*/
private int front; // 队列头
/**
* rear 变量的含义做一个调整:rear 指向队列的最后一个元素的后一个位置,因为希望空出一个空间作为约定
* rear 的初始值 = 0
*/
private int rear; // 队列尾
private int[] array; // 该数组用于存放数据
// 队列构造器
public CircleArrayQueue(int maxSize) {
this.maxSize = maxSize;
array = new int[maxSize];
front = 0; // 指向队列头部,front是指向队列头的前一个位置
rear = 0; // 指向队列尾,指向队列尾的数据(即就是队列最后一个数据)
}
/**
* 判断队列是否已满
*/
public boolean isFull() {
// return this.rear == this.maxSize - 1;
return (rear + 1) % maxSize == front;
}
/**
* 判断队列是否为空
*/
public boolean isEmpty() {
return front == rear;
}
/**
* 入队
*/
public void add(int num) {
// 判断队列是否为满
if(isFull()) {
// throw new RuntimeException("队列已满,无法添加数据");
System.out.println("队列已满,无法添加数据");
return;
}
array[rear] = num;
// 将 rear 后移,这里必须考虑取模
rear = (rear + 1) % maxSize;
}
/**
* 出队
*/
public int remove() {
// 判断队列是否为空
if(isEmpty()) {
throw new RuntimeException("队列为空,不能取数据");
}
// 这里需要分析出 front 是指向队列的第一个元素
/*
1.先把 front 对应的值保留一个临时变量
2.将 front 后移,考虑取模
3.将临时保存的变量值返回
*/
int value = array[front];
front = (front + 1) % maxSize; // 头指针后移,如果指向最后一个元素则重新指向队列的第一个元素
return value;
}
/**
* 显示队列数据
*/
public void showQueue() {
// 遍历
if(isEmpty()) {
System.out.println("队列数据为空,没有数据。");
}
// 思路:从 front开始遍历,遍历多少个元素
// 队列中有效数据的个数:(rear + maxSize - front) % maxSize
for (int i = front; i < front + getSize(); i++) {
System.out.printf("array[%d]=%d\n", i % maxSize, array[i % maxSize]);
}
}
/**
* 获取队列有效个数数据
*/
public int getSize() {
/*
rear = 1
front = 0
maxSize = 3
*/
return (rear + maxSize - front) % maxSize;
}
/**
* 显示队列的头数据,注意不是取出数据
*/
public int headQueue() {
if (isEmpty()) {
System.out.println("队列为空,没有数据哦");
}
return array[front];
}
}
测试类:CircleArrayQueueTest.java
package com.laizhenghua.data_structure;
import java.util.Scanner;
/**
* @description:
* @author: laizhenghua
* @date: 2021/5/8 22:12
*/
public class CircleArrayQueueTest {
public static void main(String[] args) {
System.out.println("===测试数组模拟环形队列===");
CircleArrayQueue queue = new CircleArrayQueue(4); // 说明设置4,其队列的有效数据最大是3,留出一个约定空间
char key = ' '; // 接收用户输入
Scanner scanner = new Scanner(System.in);
boolean loop = true;
while (loop) {
System.out.println("s(show):显示队列");
System.out.println("e(exit):退出程序");
System.out.println("a(add):入队");
System.out.println("r(remove):出队");
System.out.println("h(head):查看队列头的数据");
System.out.print("请输入操作:");
key = scanner.next().charAt(0); // 接收一个字符
switch (key) {
case 's':
queue.showQueue();
break;
case 'e':
loop = false;
break;
case 'a':
System.out.print("输入一个数:");
int value = scanner.nextInt();
queue.add(value);
break;
case 'r':
try {
int res = queue.remove();
System.out.printf("取出的数据是[%d]\n",res);
} catch (RuntimeException e) {
System.out.println(e.getMessage());
}
break;
case 'h':
int res = queue.headQueue();
System.out.printf("队列头的数据是[%d]\n", res);
default:
break;
}
}
}
}