对前面的数组模拟队列的优化,充分利用数组。因此将数组看做是一个环形的。(通过取模的方式来实现)
分析说明:
尾索引的下一个为头索引时表示队列满,即将队列容量空出一个作为约定,这个在做判断队列满的时候需要注意
(rear + 1)% maxSize == front 满<br /> rear == front 空
分析示意图:
代码实现:
package com.atguigu.sparseArray;
import java.util.Scanner;
/**
* 模拟环形队列
* @author Dxkstart
* @create 2021-09-30-8:43
*/
public class CirceArrayQueue {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
//测试数组模拟环形队列
//创建一个队列
CirceArray circeArray = new CirceArray(5);//这里设置5,但是队列最大有效数据个数为4
boolean b = true;
while (b) {
System.out.println("请选择功能:");
System.out.println("1.显示队列");
System.out.println("2.添加数据到队列");
System.out.println("3.从队列取出数据");
System.out.println("4.查看队列头的数据");
System.out.println("5.退出程序");
int key = scanner.nextInt();//用户输入数字选择功能
switch (key) {
case (1):
circeArray.showQueue();
System.out.println();
break;
case (2):
System.out.println("请输入一个数字");
int value = scanner.nextInt();//用户输入队列的数据
circeArray.addQueue(value);
System.out.println();
break;
case (3):
try {
System.out.println("取出的数据是:" + circeArray.getQueue());
} catch (Exception e) {
System.out.println(e.getMessage());
}
System.out.println();
break;
case (4):
try {
System.out.println("队列头数据为:" + circeArray.headQueue());
} catch (Exception e) {
System.out.println(e.getMessage());
}
System.out.println();
break;
case (5):
b = false;
break;
default:
break;
}
}
System.out.println("程序退出!");
}
}
class CirceArray{
private int maxSize;//表示数组的最大容量
/*
front 变量的含义做一个调整:front就指向队列的第一个元素,也就是说arr[front]就是队列的第一个元素
front的初始值 = 0
*/
private int front;
/*
rear 变量的含义做一个调整:rear指向队列的最后一个元素的后一个位置。因为希望空出一个空间作为约定
rear的初始值 = 0
*/
private int rear;//队列尾
private int[] arr;//该数组用于存放数据,模拟队列
public CirceArray(int arrMaxSize){
maxSize = arrMaxSize;
arr = new int[maxSize];
}
//判断队列是否已满
public boolean isFull() {
return (rear + 1) % maxSize == front;
}
//判断队列是否为空
public boolean isEmpty() {
return rear == front;
}
//添加数据到队列
public void addQueue(int n) {
//先判断队列是否已满
if (isFull()) {
System.out.println("队列已满,不能再添加啦!");
return;
}
//直接将数据加入
arr[rear] = n;
//将rear后移一位,这里必须考虑取模,因为是环形队列
rear = (rear + 1) % maxSize;
System.out.println("添加成功!");
}
//获取出队列的数据,出队列,先进先出
public int getQueue() {
//先判断队列是否为空
if (isEmpty()) {
//通过抛出异常来处理
throw new RuntimeException("队列为空呢!");
}
//这里需要分析出front是指向队列的第一个元素
//1.先把front对应的值保存在一个临时变量中
//2.将front后移
//3.返回临时变量的值
int value = arr[front];
front = (front + 1) % maxSize;
return value;
}
//显示队列的所有数据
public void showQueue() {
//遍历
if (isEmpty()) {
System.out.println("队列为空,不能遍历");
return;
}
//思路:从front开始遍历,遍历多少个元素
//动脑筋
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;
}
//显示队列的头数据,注意不是取出数据
public int headQueue() {
if (isEmpty()) {
throw new RuntimeException("队列为空,没有数据");
}
return arr[front % maxSize];
}
}