您好,登錄后才能下訂單哦!
小編給大家分享一下Java如何實現(xiàn)循環(huán)隊列,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!
循環(huán)隊列 (Circular Queue) 是一種特殊的隊列. 循環(huán)隊列解決了隊列出隊時需要將所有數(shù)據(jù)前移一位 (復(fù)雜度為 O(n)) 的問題.
循環(huán)隊列的底層依然是數(shù)組, 不過增加了指向頭和尾的指針.
判斷隊列是否為空: 當頭指針 Q.front == 尾指針 Q.rear, 隊列為空
判斷隊列是否為滿: 當頭指針 Q.front == 尾指針 Q.rear + 1) % Maxsize, 隊列為滿
// 改變隊列大小 private void resize(int capacity) { // 定義新數(shù)組 E[] newData = (E[]) new Object[capacity + 1]; // 轉(zhuǎn)移數(shù)組元素 for (int i = 0; i < size; i++) { newData[i] = data[(i +front) % data.length]; } // 更新 data = newData; front = 0; rear = size; }
// 入隊 public void enqueue(E e) { // 判斷是否為滿 if((rear + 1) % data.length == front) { resize(getCapacity() * 2); } // 隊伍加入 data[rear] = e; rear = (rear + 1) % data.length; size++; }
// 出隊 public E dequeue() { // 判斷是否為空 if(isEmpty()) { throw new RuntimeException("隊列為空"); } // 取出第一個元素 E element = data[front]; data[front] = null; // 移動頭指針 front = (front + 1) % data.length; // 數(shù)組大小-1 size--; // 判斷是否需要縮小 if(size==getCapacity() / 4 && getCapacity() / 2 != 0) { resize(getCapacity() / 2); } return element; }
// 主函數(shù) public static void main(String[] args) { // 創(chuàng)建循環(huán)隊列 CircularQueue<Integer> queue = new CircularQueue<>(5); // 入隊 for (int i = 0; i < 8; i++) { queue.enqueue(i); System.out.println(queue); } // 出隊 for (int i = 0; i < 8; i++) { queue.dequeue(); System.out.println(queue); } }
輸出結(jié)果:
CircularQueue{data=[0, null, null, null, null, null], front=0, rear=1, size=1}
CircularQueue{data=[0, 1, null, null, null, null], front=0, rear=2, size=2}
CircularQueue{data=[0, 1, 2, null, null, null], front=0, rear=3, size=3}
CircularQueue{data=[0, 1, 2, 3, null, null], front=0, rear=4, size=4}
CircularQueue{data=[0, 1, 2, 3, 4, null], front=0, rear=5, size=5}
CircularQueue{data=[0, 1, 2, 3, 4, 5, null, null, null, null, null], front=0, rear=6, size=6}
CircularQueue{data=[0, 1, 2, 3, 4, 5, 6, null, null, null, null], front=0, rear=7, size=7}
CircularQueue{data=[0, 1, 2, 3, 4, 5, 6, 7, null, null, null], front=0, rear=8, size=8}
CircularQueue{data=[null, 1, 2, 3, 4, 5, 6, 7, null, null, null], front=1, rear=8, size=7}
CircularQueue{data=[null, null, 2, 3, 4, 5, 6, 7, null, null, null], front=2, rear=8, size=6}
CircularQueue{data=[null, null, null, 3, 4, 5, 6, 7, null, null, null], front=3, rear=8, size=5}
CircularQueue{data=[null, null, null, null, 4, 5, 6, 7, null, null, null], front=4, rear=8, size=4}
CircularQueue{data=[null, null, null, null, null, 5, 6, 7, null, null, null], front=5, rear=8, size=3}
CircularQueue{data=[6, 7, null, null, null, null], front=0, rear=2, size=2}
CircularQueue{data=[7, null, null], front=0, rear=1, size=1}
CircularQueue{data=[null, null], front=0, rear=0, size=0}
import java.util.ArrayList; import java.util.Arrays; public class CircularQueue<E> { private E[] data; private int front, rear; private int size; // 無參構(gòu)造 public CircularQueue() { this(10); } // 有參構(gòu)造 public CircularQueue(int capacity) { data = (E[]) new Object[capacity + 1]; front = rear = size = 0; } // 入隊 public void enqueue(E e) { // 判斷是否為滿 if((rear + 1) % data.length == front) { resize(getCapacity() * 2); } // 隊伍加入 data[rear] = e; rear = (rear + 1) % data.length; size++; } // 出隊 public E dequeue() { // 判斷是否為空 if(isEmpty()) { throw new RuntimeException("隊列為空"); } // 取出第一個元素 E element = data[front]; data[front] = null; // 移動頭指針 front = (front + 1) % data.length; // 數(shù)組大小-1 size--; // 判斷是否需要縮小 if(size==getCapacity() / 4 && getCapacity() / 2 != 0) { resize(getCapacity() / 2); } return element; } // 獲取隊列大小 public int getSize() { return size; } // 獲取隊列容量 public int getCapacity() { return data.length - 1; } // 隊列是否為空 public boolean isEmpty() { return front == rear; } // 改變隊列大小 private void resize(int capacity) { // 創(chuàng)建新數(shù)組 E[] newData = (E[]) new Object[capacity + 1]; // 轉(zhuǎn)移數(shù)組元素 for (int i = 0; i < size; i++) { newData[i] = data[(i +front) % data.length]; } // 更新 data = newData; front = 0; rear = size; } @Override public String toString() { return "CircularQueue{" + "data=" + Arrays.toString(data) + ", front=" + front + ", rear=" + rear + ", size=" + size + '}'; } // 主函數(shù) public static void main(String[] args) { // 創(chuàng)建循環(huán)隊列 CircularQueue<Integer> queue = new CircularQueue<>(5); // 入隊 for (int i = 0; i < 8; i++) { queue.enqueue(i); System.out.println(queue); } // 出隊 for (int i = 0; i < 8; i++) { queue.dequeue(); System.out.println(queue); } } }
看完了這篇文章,相信你對“Java如何實現(xiàn)循環(huán)隊列”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。