时间:2021-05-19
这篇文章主要介绍了java数组实现队列及环形队列实现过程解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
代码内容
ArrayQueue---用数组实现队列
改进版---环形队列:
环形队列代码
package com.structure;import java.util.Scanner;/** * @auther::9527 * @Description: 环形队列 * @program: jstl2 * @create: 2019-10-05 09:53 */public class CircleArrayQueueDemo { public static void main(String[] args) { //创建一个环形队列 这里输入最大数是4,其实有效的是3 CircleArray queue = new CircleArray(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): 查看队列头的数据"); 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.printf("取出的数据是%d\n", res); } catch (Exception e) { // TODO: handle exception System.out.println(e.getMessage()); } break; case 'h': // 查看队列头的数据 try { int res = queue.headQueue(); System.out.printf("队列头的数据是%d\n", res); } catch (Exception e) { // TODO: handle exception System.out.println(e.getMessage()); } break; case 'e': // 退出 scanner.close(); loop = false; break; default: break; } } System.out.println("程序退出~~"); }}class CircleArray { private int maxSize; //数组的最大容量 //front 变量调整:front就指向队列的第一个元素,即:arr[front]=arr[0] private int front; //rear 变量调整:rear 初始值为0 指向队列的最后一个元素的位置,因为需要空出一个位置作约束 private int rear; private int[] arr; //构造器 public CircleArray(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; } //获取队列的数据,出队列 public int getQueue() { if (isEmpty()) { throw new RuntimeException("队列为空,不能取数据"); } //由于front是指向队列的第一个元素,所以需要 // 1、front的值先保存到临时变量 //2、将front后移一位,通过取模实现环形后移, // 3、将临时变量返回 int temp = arr[front]; front = (front + 1) % maxSize; return temp; } //显示队列的所有数据 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]; }}以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
Summary什么是环形队列实现环形队列图示过程golang版本代码实现过程参考全部代码什么是环形队列在一个指定大小的数组里循环写入数据,借用二个指针分别实现入
本文实例为大家分享了Java1.8使用数组实现循环队列的具体代码,供大家参考,具体内容如下1、引入使用数组实现循环队列,功能如下:1)isFull():队列满?
复习了下数据结构,用Java的数组实现一下循环队列。队列的类//循环队列classCirQueue{privateintQueueSize;privateint
数组实现队列//数组实现队列classqueue{int[]a=newint[5];inti=0;//入队操作publicvoidin(intm){a[i++]
java数据结构之栈与队列一:对列队列是一种先进先出的数据结构实现代码:packageQueue;/**使用java构建队列,并模拟实现队列的入队和出对方法*/