博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java Queue-数组队列和循环队列-学习记录
阅读量:5162 次
发布时间:2019-06-13

本文共 4019 字,大约阅读时间需要 13 分钟。

package queue;import array.Array;/** * @Title: ArrayQueue * @ProjectName Demo03 * @date 2018/9/1214:09 */public class ArrayQueue
implements Queue
{ private Array
array; public ArrayQueue() { array = new Array<>(); } public ArrayQueue(int capacity) { array = new Array<>(capacity); } @Override public int getSize() { return array.getSize(); } @Override public boolean isEmpty() { return array.isEmpty(); } @Override public void enqueue(E e) { array.addLast(e); } @Override public E dequeue() { return array.removeFirst(); } @Override public E getFront() { return array.getFirst(); } @Override public String toString() { StringBuilder res = new StringBuilder(); res.append("Queue:"); res.append("Front ["); for (int i = 0; i < array.getSize(); i++) { res.append(array.get(i)); if (i != array.getSize() - 1) { res.append(","); } } res.append("] tail"); return res.toString(); } public static void main(String[] args) { ArrayQueue
arrayQueue = new ArrayQueue<>(); arrayQueue.enqueue("1"); arrayQueue.enqueue("2"); System.out.println(arrayQueue); System.out.println(arrayQueue.getFront()); arrayQueue.dequeue(); System.out.println(arrayQueue); }}

 

package queue;/** * @Title: LoopQueue * @ProjectName Demo03 * @date 2018/9/1214:17 */public class LoopQueue
implements Queue
{ private E[] data; // 元素所在位置,元素入队下一个位置 private int front, tail; private int size; public LoopQueue(int capacity) { data = (E[]) new Object[capacity + 1]; front = 0; tail = 0; size = 0; } public LoopQueue() { this(10); } @Override public int getSize() { return size; } @Override public boolean isEmpty() { return front == tail; } public int getCapacity() { return data.length - 1; } @Override public void enqueue(E e) { if ((tail + 1) % data.length == front) { // 队列已满 resize(getCapacity() * 2); } data[tail] = e; tail = (tail + 1) % data.length; size++; } @Override public E dequeue() { if (isEmpty()) { throw new IllegalArgumentException("队列为空"); } E e = data[front]; front = (front + 1) % data.length; size--; if (size == getCapacity() / 4 && getCapacity() / 2 != 0) { resize(getCapacity() / 2); } return e; } @Override public E getFront() { if (isEmpty()) { throw new IllegalArgumentException("队列为空"); } return data[front]; } private void resize(int capacity) { E[] newData = (E[]) new Object[capacity + 1]; for (int i = 0; i < size; i++) { newData[i] = data[(i + front) % data.length]; } data = newData; front = 0; tail = size; } @Override public String toString() { StringBuilder res = new StringBuilder(); res.append(String.format("LoopQueue: size=%d , capacity=%d\n", size, getCapacity())); res.append("Front: ["); for (int i = front; i != tail; i = (i + 1) % data.length) { res.append(data[i]); if ((i + 1) % data.length != tail) res.append(','); } res.append("] tail"); return res.toString(); } public static void main(String[] args){ LoopQueue
queue = new LoopQueue<>(5); for(int i = 0 ; i < 10 ; i ++){ queue.enqueue(i); System.out.println(queue); if(i % 3 == 2){ queue.dequeue(); System.out.println(queue); } } }}

  

转载于:https://www.cnblogs.com/412013cl/p/9635196.html

你可能感兴趣的文章
NYOJ-128前缀式计算
查看>>
深入理解 JavaScript 事件循环(一)— event loop
查看>>
Hive(7)-基本查询语句
查看>>
注意java的对象引用
查看>>
C++ 面向对象 类成员函数this指针
查看>>
NSPredicate的使用,超级强大
查看>>
自动分割mp3等音频视频文件的脚本
查看>>
判断字符串是否为空的注意事项
查看>>
布兰诗歌
查看>>
js编码
查看>>
Pycharm Error loading package list:Status: 403错误解决方法
查看>>
steps/train_sat.sh
查看>>
转:Linux设备树(Device Tree)机制
查看>>
iOS 组件化
查看>>
(转)Tomcat 8 安装和配置、优化
查看>>
(转)Linxu磁盘体系知识介绍及磁盘介绍
查看>>
tkinter布局
查看>>
命令ord
查看>>
Sharepoint 2013搜索服务配置总结(实战)
查看>>
博客盈利请先考虑这七点
查看>>