THIS IS B3c0me

记录生活中的点点滴滴

0%

数组模拟队列第一版

java实现用数组模拟一个队列,存在的问题是该数组只能使用一次

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package queue;

import java.util.Scanner;

public class ArrayQueueDemo {

public static void main1(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):显示队列头部数据");
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",res);
} catch(Exception e) {
System.out.println(e.getMessage());
}
break;
case'e':
scanner.close();
loop = false;
break;
default:
break;
}
}
System.out.println("程序退出");
}
}
// 使用数组模拟队列,编写一个ArrayQueue 类
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("队列已满,不能加入数据");
}
rear++; //让rear 后移
arr[rear] = n;
}
// 获取队列的数据,出队列
public int getQueue() {
//判断队列是否空
if(isEmpty()) {
//通过抛出异常来处理
throw new RuntimeException("队列空,不能取出数据");
}
front++;
return arr[front];
}
// 显示队列的所有数据
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]);
}
}
//显示队列的头数据
public int headQueue() {
if(isEmpty()) {
throw new RuntimeException("队列空");
}
return arr[front+1];
}
}

欢迎关注我的其它发布渠道