队列的使用场景
银行排队的案例
队列介绍
- 时一个有序的列表,可以用数组或是链表来实现
- 先入先出的原则
数组模拟队列思路
创建队列:
- 队列本身时有序列表,若使用数组的结构来存储队列的数据,则队列数组的 maxSize 时改队列的最大容量。
- 应为输入、输出时分贝从前后端来处理,所以需要两个变量 front 及rear 分别记录队列前后端的下标,fromt会随者数据输入二改变,而 rear 则时随着数据输入而改变。
存入队列:
- 将数据存入队列时称为”addQueue“
- 将尾指针往后移:rear+1,当front == rear 或者 队列为空
- 尾指针小于最大下标-1,及
rear<maxSize-1 ,则将数据存入 rear 所指的数组元素中,否则无法存入数据,及rear== maxSize-1(队列已满)
import java.util.Scanner;
public class ArrayQueueDemo {
public static void main(String[] args) {
ArrayQueue arrayQueue = new ArrayQueue(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("g(get): 从队列取数据");
System.out.println("h(head): 查看队列头的数据\n");
key = scanner.next().charAt(0);
switch (key) {
case 's':
arrayQueue.showQueue();
break;
case 'a':// 插入数据
System.out.println("请输入一个数");
int value = scanner.nextInt();
arrayQueue.addQueue(value);
break;
case 'g':// 取出数据
try {
int res = arrayQueue.getQueue();
System.out.printf("取出的数据是%d\n", res);
} catch (Exception e) {
System.out.println(e.getMessage());
}
break;
case 'h':// 查看队列头数据
try {
int res = arrayQueue.headQueue();
System.out.printf("队列头数据是%d\n", res);
} catch (Exception e) {
System.out.println(e.getMessage());
}
break;
case 'e':
scanner.close();
loop = false;
break;
default:
break;
}
}
System.out.println("程序退出!");
}
}
class ArrayQueue {
private int maxSize;
private int front;
private int rear;
private int[] arr;
public ArrayQueue(int arrMaxSize) {
maxSize = arrMaxSize;
arr = new int[maxSize];
front = -1;
rear = -1;
}
public boolean isFull() {
return rear == maxSize - 1;
}
public boolean isEmpty() {
return rear == front;
}
public void addQueue(int n) {
if (isFull()) {
System.out.println("队列已满,不能加入数据···");
return;
}
rear++;
arr[rear] = n;
}
public int getQueue() {
if (isEmpty()) {
throw new RuntimeException("队列空,不能取数据");
}
front++;
return arr[front];
}
public void showQueue() {
if (isEmpty()) {
System.out.println("队列空,没有数据");
}
for (int i = 0; i < arr.length; i++) {
System.out.printf("arr[%d]=%d\n", i, arr[i]);
}
}
public int headQueue() {
if (isEmpty()) {
throw new RuntimeException("队列空,没有数据");
}
return arr[front + 1];
}
}
问题:
- 目前数组使用一次就不能使用了,没有达到复用的效果
- 将这个数组使用算法,改进成一个环形的数组 取模:%
数组模拟环形队列思路
实现思路:
- front 变量的含义做一个调整:front 就指向队列的第一个元素,也就是说
arr[front] 就是队列的第一个元素。
- rear 变量的含义做一个调整:rear 队列指向队列的最后一个元素的后一个位置,因为希望空出一个空间作为约定。
- 当队列满时,条件是
(rear+1) % maxSize == front 数组已满 - 队列为空的条件,
rear == front 队列为空 - 队列中有效的数据个数
(rear+maxSize-front) % maxSize - 在原来的基础上修改,就可以得到一个环形队列。
因为 rear 表示所指向队列的后一个元素,因为是循环队列,对 maxSize 求模是为了保证当 rear 超出maxSize时,可以循环到数组第一个元素的位置。
import java.util.Scanner;
public class CircleArrayQueueDemo {
public static void main(String[] args) {
CircleArrayQueue arrayQueue = new CircleArrayQueue(4);
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("g(get): 从队列取数据");
System.out.println("h(head): 查看队列头的数据\n");
key = scanner.next().charAt(0);
switch (key) {
case 's':
arrayQueue.showQueue();
break;
case 'a':// 插入数据
System.out.println("请输入一个数");
int value = scanner.nextInt();
arrayQueue.addQueue(value);
break;
case 'g':// 取出数据
try {
int res = arrayQueue.getQueue();
System.out.printf("取出的数据是%d\n", res);
} catch (Exception e) {
System.out.println(e.getMessage());
}
break;
case 'h':// 查看队列头数据
try {
int res = arrayQueue.headQueue();
System.out.printf("队列头数据是%d\n", res);
} catch (Exception e) {
System.out.println(e.getMessage());
}
break;
case 'e':
scanner.close();
loop = false;
break;
default:
break;
}
}
System.out.println("程序退出!");
}
}
class CircleArrayQueue {
private int maxSize;
private int front;
private int rear;
private int[] arr;
public CircleArrayQueue(int arrMaxSize) {
maxSize = arrMaxSize;
arr = new int[maxSize];
front = 0;
rear = 0;
}
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 + 1) % maxSize;
}
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;
}
public int headQueue() {
if (isEmpty()) {
throw new RuntimeException("队列空,没有数据");
}
return arr[front];
}
}
|