day01-创建一个队列
package aStudy.day1;
import java.util.Scanner;
public class data02 {
public static void main(String[] args) {
ArrayQueue queue = 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' : queue.showQueue();
break;
case 'a' :
System.out.println("输入一个数");
int value = scanner.nextInt();
queue.addQueue(value);
break;
case 'g' :
try {
int res = queue.getQueue();
System.out.println("取出的数 "+res);
}catch (Exception e){
e.printStackTrace();
}
break;
case 'e' : scanner.close();
loop = false;
break;
default:
break;
}
}
System.out.println("exit");
}
}
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;
}
arr[++rear] = n;
}
public int getQueue(){
if (isEmpty()){
throw new RuntimeException("队列已空");
}
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];
}
}
转载请注明原文地址:https://blackberry.8miu.com/read-44779.html