当前位置: 首页 > news >正文

数据结构与算法—队列

队列

队列介绍

有序列表,可以用数组或者链表实现。遵循先进先出原则。

数组实现队列

public class ArrayQueue {public static void main(String[] args) {ArrayQueue queue = new ArrayQueue(3);// 接收用户输入char key =' ';Scanner sc = 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 = sc.next().charAt(0);switch (key) {case 's':queue.showQueue();break;case 'a':System.out.println("输出一个数:");queue.addQueue(sc.nextInt());break;case 'g':try {int res = queue.getQueue();System.out.printf("取出的数据是:%d\n", res);} catch (Exception e) {System.out.printf(e.getMessage());}break;case 'h':try {int res = queue.head();System.out.printf("头数据是:%d\n", res);} catch (Exception e) {System.out.printf(e.getMessage());}break;case 'e':sc.close();loop = false;break;default:break;}System.out.println("程序退出~~");}}// 数组的最大容量private int maxSize;// 队头private int front;// 队尾private int rear;// 存放数据的数组private int[] arr;// 初始化队列public ArrayQueue(int maxSize) {this.maxSize = maxSize;this.arr = new int[this.maxSize];// 让front 指向队列头的前一个位置(队列头数据的前一个位置)this.front = -1;// 让rear 指向队尾的数据(队列的最后一个数据)this.rear = -1;}// 判断队列是否满public boolean isFull() {return rear == maxSize - 1;}// 判断队列是否为空public boolean isEmpty() {return rear == front;}public void addQueue(int data) {if (isFull()) {System.out.println("队列满,不能加数据~");return;}rear++;arr[rear] = data;}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 head() {if (isEmpty()) {throw new RuntimeException("队列空,没有头数据~");}return arr[front + 1];}
}

通过该方法测试
在这里插入图片描述在这里插入图片描述
添加了:10,20,30
show:arr[0]=10,arr[1]=20,arr[2]=30
在这里插入图片描述
取出10后,头数据是20。这时候show一下,可以看到队列为:arr[0]=10,arr[1]=20,arr[2]=30
在这里插入图片描述
也就是我们通过g获取到了数据,看到队列数据还是一样。

为了可以重新使用已经出队的数据所占用的空间,考虑使用环形队列。

数组环形队列

在这里插入图片描述

public class CircleArrayQueue {public static void main(String[] args) {CircleArrayQueue queue = new CircleArrayQueue(3);// 接收用户输入char key =' ';Scanner sc = 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 = sc.next().charAt(0);switch (key) {case 's':queue.showQueue();break;case 'a':System.out.println("输出一个数:");queue.addQueue(sc.nextInt());break;case 'g':try {int res = queue.getQueue();System.out.printf("取出的数据是:%d\n", res);} catch (Exception e) {System.out.printf(e.getMessage());}break;case 'h':try {int res = queue.head();System.out.printf("头数据是:%d\n", res);} catch (Exception e) {System.out.printf(e.getMessage());}break;case 'e':sc.close();loop = false;break;default:break;}System.out.println("程序退出~~");}}// 数组的最大容量private int maxSize;// 让front 指向队列的第一个元素// front = 0;// 让rear 指向队列的最后一个元素的后一个位置,因为希望空出一个空间作为约定// rear = 0;private int front;private int rear;// 存放数据的数组private int[] arr;// 初始化队列public CircleArrayQueue(int maxSize) {this.maxSize = maxSize;this.arr = new int[maxSize];}// 判断队列是否满public boolean isFull() {return (rear + 1) % maxSize == front;}// 判断队列是否为空public boolean isEmpty() {return rear == front;}// 添加数据public void addQueue(int data) {if (isFull()) {System.out.println("队列满,不能加数据~");return;}arr[rear] = data;// rear 后移,因为是环形,考虑取模rear = (rear + 1) % maxSize;}public int getQueue() {if (isEmpty()) {throw new RuntimeException("队列空,无法取出数据~");}// 因为front 是队列第一个元素,也会后移,考虑取模,以免越界// 1.先保存front 指向的值到valueint value = arr[front];// 2.front 后移,并返回valuefront = (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 head() {if (isEmpty()) {throw new RuntimeException("队列空,没有头数据~");}return arr[front];}
}

测试:
添加数据10,20,30,show一下,添加40提示队列满
在这里插入图片描述
在这里插入图片描述
取出arr[0] 后,show一下,可以看到队列还剩两个数据
在这里插入图片描述
这时,又可以在arr[0] 的位置插入新数据。
在这里插入图片描述
在这里插入图片描述
这样,就可以利用好了数组空间。

最近学习的数据结构与算法主要都是根据尚硅谷的学习:
https://www.bilibili.com/video/BV1E4411H73v/?p=18&vd_source=8e23c01ff3b88e176530ca2e0f4f18fe

可以看看我的个人博客:
网站:https://www.fuzm.wang / https://liwangc.gitee.io
—————————————————————————

作为初学者,很多知识都没有掌握,见谅,如有错误请指出,以期进步,感谢!。后续有新的学习,继续补充上来。

http://www.lryc.cn/news/11595.html

相关文章:

  • AcWing3416.时间显示——学习笔记
  • 贴吧手机端防删图GIF动态图制作解析
  • iOS接入Google登录
  • 【C语言】大小端字节序问题
  • Linux | 网络通信 | 序列化和反序列化的讲解与实现
  • C#的委托原理刨析and事件原理刨析和两者的比较
  • Redis学习【8】之Redis RDB持久化
  • SpringSecurity认证
  • Socket套接字
  • mysql详解之innoDB
  • 电信运营商的新尝试:探索非通信领域的发展
  • 第07章_单行函数
  • Echarts实现多柱状图重叠重叠效果
  • PHP学习笔记(一谦四益)
  • Jvm -堆对象的划分
  • 2023美赛F题讲解+数据领取
  • 【博客625】keepalived开启garp refresh的重要性
  • nginx防护规则,拦截非法字符,防止SQL注入、防XSS,nginx过滤url访问,屏蔽垃圾蜘蛛,WordPress安全代码篇
  • 【计算机网络】网络层
  • 产品经理知识体系:1.什么是互联网思维?
  • 【数据结构】单链表的接口实现(附图解和源码)
  • TikTok话题量超30亿,这款承载美好记忆的剪贴簿引发讨论
  • 了解Dubbo
  • 2023年前端面试知识点总结(JavaScript篇)
  • jQuery
  • 强化学习基础概念
  • Redis学习【9】之Redis RDB持久化
  • 分析 vant4 源码,学会用 vue3 + ts 开发毫秒级渲染的倒计时组件,真是妙啊
  • 事件驱动型架构
  • 20222023华为OD机试 - 不含 101 的数(Python)