Java源碼刨析之ArrayQueue
ArrayQueue內部實現
在談ArrayQueue的內部實現之前我們先來看一個ArrayQueue的使用例子:
public void testQueue() {
ArrayQueue<Integer> queue = new ArrayQueue<>(10);
queue.add(1);
queue.add(2);
queue.add(3);
queue.add(4);
System.out.println(queue);
queue.remove(0); // 這個參數只能為0 表示刪除隊列當中第一個元素,也就是隊頭元素
System.out.println(queue);
queue.remove(0);
System.out.println(queue);
}// 輸出結果
[1, 2, 3, 4]
[2, 3, 4]
[3, 4]
首先ArrayQueue內部是由循環(huán)數組實現的,可能保證增加和刪除數據的時間復雜度都是 O ( 1 ) O(1) O(1),不像ArrayList刪除數據的時間復雜度為 O ( n ) O(n) O(n)。在ArrayQueue內部有兩個整型數據head和tail,這兩個的作用主要是指向隊列的頭部和尾部,它的初始狀態(tài)在內存當中的布局如下圖所示:

因為是初始狀態(tài)head和tail的值都等于0,指向數組當中第一個數據?,F在我們向ArrayQueue內部加入5個數據,那么他的內存布局將如下圖所示:

現在我們刪除4個數據,那么上圖經過4次刪除操作之后,ArrayQueue內部數據布局如下:

在上面的狀態(tài)下,我們繼續(xù)加入8個數據,那么布局情況如下:

我們知道上圖在加入數據的時候不僅將數組后半部分的空間使用完了,而且可以繼續(xù)使用前半部分沒有使用過的空間,也就是說在ArrayQueue內部實現了一個循環(huán)使用的過程。
ArrayQueue源碼剖析
構造函數
public ArrayQueue(int capacity) {
this.capacity = capacity + 1;
this.queue = newArray(capacity + 1);
this.head = 0;
this.tail = 0;
}
@SuppressWarnings("unchecked")
private T[] newArray(int size) {
return (T[]) new Object[size];
}上面的構造函數的代碼比較容易理解,主要就是根據用戶輸入的數組空間長度去申請數組,不過他具體在申請數組的時候會多申請一個空間。
add函數
public boolean add(T o) {
queue[tail] = o;
// 循環(huán)使用數組
int newtail = (tail + 1) % capacity;
if (newtail == head)
throw new IndexOutOfBoundsException("Queue full");
tail = newtail;
return true; // we did add something
}上面的代碼也相對比較容易看懂,在上文當中我們已經提到了ArrayQueue可以循環(huán)將數據加入到數組當中去,這一點在上面的代碼當中也有所體現。
remove函數
public T remove(int i) {
if (i != 0)
throw new IllegalArgumentException("Can only remove head of queue");
if (head == tail)
throw new IndexOutOfBoundsException("Queue empty");
T removed = queue[head];
queue[head] = null;
head = (head + 1) % capacity;
return removed;
}從上面的代碼當中可以看出,在remove函數當中我們必須傳遞參數0,否則會拋出異常。而在這個函數當中我們只會刪除當前head下標所在位置的數據,然后將head的值進行循環(huán)加1操作。
get函數
public T get(int i) {
int size = size();
if (i < 0 || i >= size) {
final String msg = "Index " + i + ", queue size " + size;
throw new IndexOutOfBoundsException(msg);
}
int index = (head + i) % capacity;
return queue[index];
}get函數的參數表示得到第i個數據,這個第i個數據并不是數組位置的第i個數據,而是距離head位置為i的位置的數據,了解這一點,上面的代碼是很容易理解的。
resize函數
public void resize(int newcapacity) {
int size = size();
if (newcapacity < size)
throw new IndexOutOfBoundsException("Resizing would lose data");
newcapacity++;
if (newcapacity == this.capacity)
return;
T[] newqueue = newArray(newcapacity);
for (int i = 0; i < size; i++)
newqueue[i] = get(i);
this.capacity = newcapacity;
this.queue = newqueue;
this.head = 0;
this.tail = size;
}在resize函數當中首先申請新長度的數組空間,然后將原數組的數據一個一個的拷貝到新的數組當中,注意在這個拷貝的過程當中,重新更新了head與tail,而且并不是簡單的數組拷貝,因為在之前的操作當中head可能已經不是了0,因此新的拷貝需要我們一個一個的從就數組拿出來,讓后放到新數組當中。下圖可以很直觀的看出這個過程:

總結
在本篇文章當中主要給大家介紹了ArrayQueue的內部實現過程和原理,并且看了ArrayQueue的源代碼,有圖的輔助整個閱讀的過程應該是比較清晰的,ArrayQueue也是一個比較簡單的容器,JDK對他的實現也比較簡單。
到此這篇關于Java源碼刨析之ArrayQueue的文章就介紹到這了,更多相關Java ArrayQueue內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Logback MDCAdapter日志跟蹤及自定義效果源碼解讀
這篇文章主要為大家介紹了Logback MDCAdapter日志跟蹤及自定義效果源碼解讀,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進步,早日升職加薪2023-11-11
Springboot jdbctemplate整合實現步驟解析
這篇文章主要介紹了Springboot jdbctemplate整合實現步驟解析,文中通過示例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2020-08-08
詳解springboot + profile(不同環(huán)境讀取不同配置)
本篇文章主要介紹了springboot + profile(不同環(huán)境讀取不同配置),具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-05-05

