上一篇博客咱們介紹了List集合的一種典型實現 ArrayList,咱們知道 ArrayList 是由數組構成的,本篇博客咱們介紹 List 集合的另外一種典型實現 LinkedList,這是一個由鏈表構成的數組,關於鏈表的介紹,在這篇博客中 咱們也詳細介紹過,本篇博客咱們將介紹 LinkedList 是如何實現的。html
LinkedList 是一個用鏈表實現的集合,元素有序且能夠重複。java
1 public class LinkedList<E> 2 extends AbstractSequentialList<E> 3 implements List<E>, Deque<E>, Cloneable, java.io.Serializable
和 ArrayList 集合同樣,LinkedList 集合也實現了Cloneable接口和Serializable接口,分別用來支持克隆以及支持序列化。List 接口也不用多說,定義了一套 List 集合類型的方法規範。node
注意,相對於 ArrayList 集合,LinkedList 集合多實現了一個 Deque 接口,這是一個雙向隊列接口,雙向隊列就是兩端均可以進行增長和刪除操做。api
//鏈表元素(節點)的個數 transient int size = 0; /** *指向第一個節點的指針 */ transient Node<E> first; /** *指向最後一個節點的指針 */ transient Node<E> last;
注意這裏出現了一個 Node 類,這是 LinkedList 類中的一個內部類,其中每個元素就表明一個 Node 類對象,LinkedList 集合就是由許多個 Node 對象相似於手拉着手構成。數組
1 private static class Node<E> { 2 E item;//實際存儲的元素 3 Node<E> next;//指向上一個節點的引用 4 Node<E> prev;//指向下一個節點的引用 5 6 //構造函數 7 Node(Node<E> prev, E element, Node<E> next) { 8 this.item = element; 9 this.next = next; 10 this.prev = prev; 11 } 12 }
以下圖所示:oracle
上圖的 LinkedList 是有四個元素,也就是由 4 個 Node 對象組成,size=4,head 指向第一個elementA,tail指向最後一個節點elementD。ide
public LinkedList() { } public LinkedList(Collection<? extends E> c) { this(); addAll(c); }
LinkedList 有兩個構造函數,第一個是默認的空的構造函數,第二個是將已有元素的集合Collection 的實例添加到 LinkedList 中,調用的是 addAll() 方法,這個方法下面咱們會介紹。函數
注意:LinkedList 是沒有初始化鏈表大小的構造函數,由於鏈表不像數組,一個定義好的數組是必需要有肯定的大小,而後去分配內存空間,而鏈表不同,它沒有肯定的大小,經過指針的移動來指向下一個內存地址的分配。優化
將指定元素添加到鏈表頭ui
1 //將指定的元素附加到鏈表頭節點 2 public void addFirst(E e) { 3 linkFirst(e); 4 } 5 private void linkFirst(E e) { 6 final Node<E> f = first;//將頭節點賦值給 f 7 final Node<E> newNode = new Node<>(null, e, f);//將指定元素構形成一個新節點,此節點的指向下一個節點的引用爲頭節點 8 first = newNode;//將新節點設爲頭節點,那麼原先的頭節點 f 變爲第二個節點 9 if (f == null)//若是第二個節點爲空,也就是原先鏈表是空 10 last = newNode;//將這個新節點也設爲尾節點(前面已經設爲頭節點了) 11 else 12 f.prev = newNode;//將原先的頭節點的上一個節點指向新節點 13 size++;//節點數加1 14 modCount++;//和ArrayList中同樣,iterator和listIterator方法返回的迭代器和列表迭代器實現使用。 15 }
將指定元素添加到鏈表尾
1 //將元素添加到鏈表末尾 2 public void addLast(E e) { 3 linkLast(e); 4 } 5 //將元素添加到鏈表末尾 6 public boolean add(E e) { 7 linkLast(e); 8 return true; 9 } 10 void linkLast(E e) { 11 final Node<E> l = last;//將l設爲尾節點 12 final Node<E> newNode = new Node<>(l, e, null);//構造一個新節點,節點上一個節點引用指向尾節點l 13 last = newNode;//將尾節點設爲建立的新節點 14 if (l == null)//若是尾節點爲空,表示原先鏈表爲空 15 first = newNode;//將頭節點設爲新建立的節點(尾節點也是新建立的節點) 16 else 17 l.next = newNode;//將原來尾節點下一個節點的引用指向新節點 18 size++;//節點數加1 19 modCount++;//和ArrayList中同樣,iterator和listIterator方法返回的迭代器和列表迭代器實現使用。 20 }
將指定的元素插入此列表中的指定位置
//將指定的元素插入此列表中的指定位置 public void add(int index, E element) { //判斷索引 index >= 0 && index <= size中時拋出IndexOutOfBoundsException異常 checkPositionIndex(index); if (index == size)//若是索引值等於鏈表大小 linkLast(element);//將節點插入到尾節點 else linkBefore(element, node(index)); } void linkLast(E e) { final Node<E> l = last;//將l設爲尾節點 final Node<E> newNode = new Node<>(l, e, null);//構造一個新節點,節點上一個節點引用指向尾節點l last = newNode;//將尾節點設爲建立的新節點 if (l == null)//若是尾節點爲空,表示原先鏈表爲空 first = newNode;//將頭節點設爲新建立的節點(尾節點也是新建立的節點) else l.next = newNode;//將原來尾節點下一個節點的引用指向新節點 size++;//節點數加1 modCount++;//和ArrayList中同樣,iterator和listIterator方法返回的迭代器和列表迭代器實現使用。 } Node<E> node(int index) { if (index < (size >> 1)) {//若是插入的索引在前半部分 Node<E> x = first;//設x爲頭節點 for (int i = 0; i < index; i++)//從開始節點到插入節點索引之間的全部節點向後移動一位 x = x.next; return x; } else {//若是插入節點位置在後半部分 Node<E> x = last;//將x設爲最後一個節點 for (int i = size - 1; i > index; i--)//從最後節點到插入節點的索引位置之間的全部節點向前移動一位 x = x.prev; return x; } } void linkBefore(E e, Node<E> succ) { final Node<E> pred = succ.prev;//將pred設爲插入節點的上一個節點 final Node<E> newNode = new Node<>(pred, e, succ);//將新節點的上引用設爲pred,下引用設爲succ succ.prev = newNode;//succ的上一個節點的引用設爲新節點 if (pred == null)//若是插入節點的上一個節點引用爲空 first = newNode;//新節點就是頭節點 else pred.next = newNode;//插入節點的下一個節點引用設爲新節點 size++; modCount++; }
按照指定集合的迭代器返回的順序,將指定集合中的全部元素追加到此列表的末尾
此方法還有一個 addAll(int index, Collection<? extends E> c),將集合 c 中全部元素插入到指定索引的位置。其實
addAll(Collection<? extends E> c) == addAll(size, Collection<? extends E> c)
源碼以下:
1 //按照指定集合的迭代器返回的順序,將指定集合中的全部元素追加到此列表的末尾。 2 public boolean addAll(Collection<? extends E> c) { 3 return addAll(size, c); 4 } 5 //將集合 c 中全部元素插入到指定索引的位置。 6 public boolean addAll(int index, Collection<? extends E> c) { 7 //判斷索引 index >= 0 && index <= size中時拋出IndexOutOfBoundsException異常 8 checkPositionIndex(index); 9 10 Object[] a = c.toArray();//將集合轉換成一個 Object 類型的數組 11 int numNew = a.length; 12 if (numNew == 0)//若是添加的集合爲空,直接返回false 13 return false; 14 15 Node<E> pred, succ; 16 if (index == size) {//若是插入的位置等於鏈表的長度,就是將原集合元素附加到鏈表的末尾 17 succ = null; 18 pred = last; 19 } else { 20 succ = node(index); 21 pred = succ.prev; 22 } 23 24 for (Object o : a) {//遍歷要插入的元素 25 @SuppressWarnings("unchecked") E e = (E) o; 26 Node<E> newNode = new Node<>(pred, e, null); 27 if (pred == null) 28 first = newNode; 29 else 30 pred.next = newNode; 31 pred = newNode; 32 } 33 34 if (succ == null) { 35 last = pred; 36 } else { 37 pred.next = succ; 38 succ.prev = pred; 39 } 40 41 size += numNew; 42 modCount++; 43 return true; 44 }
看到上面向 LinkedList 集合中添加元素的各類方式,咱們發現LinkedList 每次添加元素只是改變元素的上一個指針引用和下一個指針引用,並且沒有擴容。,對比於 ArrayList ,須要擴容,並且在中間插入元素時,後面的全部元素都要移動一位,二者插入元素時的效率差別很大,下一篇博客會對這二者的效率,以及何種狀況選擇何種集合進行分析。
還有,每次進行添加操做,都有modCount++ 的操做,
刪除元素和添加元素同樣,也是經過更改指向上一個節點和指向下一個節點的引用便可,這裏就不做圖形展現了。
今後列表中移除並返回第一個元素
1 //今後列表中移除並返回第一個元素 2 public E remove() { 3 return removeFirst(); 4 } 5 //今後列表中移除並返回第一個元素 6 public E removeFirst() { 7 final Node<E> f = first;//f設爲頭結點 8 if (f == null) 9 throw new NoSuchElementException();//若是頭結點爲空,則拋出異常 10 return unlinkFirst(f); 11 } 12 private E unlinkFirst(Node<E> f) { 13 // assert f == first && f != null; 14 final E element = f.item; 15 final Node<E> next = f.next;//next 爲頭結點的下一個節點 16 f.item = null; 17 f.next = null; // 將節點的元素以及引用都設爲 null,便於垃圾回收 18 first = next; //修改頭結點爲第二個節點 19 if (next == null)//若是第二個節點爲空(當前鏈表只存在第一個元素) 20 last = null;//那麼尾節點也置爲 null 21 else 22 next.prev = null;//若是第二個節點不爲空,那麼將第二個節點的上一個引用置爲 null 23 size--; 24 modCount++; 25 return element; 26 }
從該列表中刪除並返回最後一個元素
1 //從該列表中刪除並返回最後一個元素 2 public E removeLast() { 3 final Node<E> l = last; 4 if (l == null)//若是尾節點爲空,表示當前集合爲空,拋出異常 5 throw new NoSuchElementException(); 6 return unlinkLast(l); 7 } 8 9 private E unlinkLast(Node<E> l) { 10 // assert l == last && l != null; 11 final E element = l.item; 12 final Node<E> prev = l.prev; 13 l.item = null; 14 l.prev = null; //將節點的元素以及引用都設爲 null,便於垃圾回收 15 last = prev;//尾節點爲倒數第二個節點 16 if (prev == null)//若是倒數第二個節點爲null 17 first = null;//那麼將節點也置爲 null 18 else 19 prev.next = null;//若是倒數第二個節點不爲空,那麼將倒數第二個節點的下一個引用置爲 null 20 size--; 21 modCount++; 22 return element; 23 }
刪除此列表中指定位置的元素
1 //刪除此列表中指定位置的元素 2 public E remove(int index) { 3 //判斷索引 index >= 0 && index <= size中時拋出IndexOutOfBoundsException異常 4 checkElementIndex(index); 5 return unlink(node(index)); 6 } 7 E unlink(Node<E> x) { 8 // assert x != null; 9 final E element = x.item; 10 final Node<E> next = x.next; 11 final Node<E> prev = x.prev; 12 13 if (prev == null) {//若是刪除節點位置的上一個節點引用爲null(表示刪除第一個元素) 14 first = next;//將頭結點置爲第一個元素的下一個節點 15 } else {//若是刪除節點位置的上一個節點引用不爲null 16 prev.next = next;//將刪除節點的上一個節點的下一個節點引用指向刪除節點的下一個節點(去掉刪除節點) 17 x.prev = null;//刪除節點的上一個節點引用置爲null 18 } 19 20 if (next == null) {//若是刪除節點的下一個節點引用爲null(表示刪除最後一個節點) 21 last = prev;//將尾節點置爲刪除節點的上一個節點 22 } else {//不是刪除尾節點 23 next.prev = prev;//將刪除節點的下一個節點的上一個節點的引用指向刪除節點的上一個節點 24 x.next = null;//將刪除節點的下一個節點引用置爲null 25 } 26 27 x.item = null;//刪除節點內容置爲null,便於垃圾回收 28 size--; 29 modCount++; 30 return element; 31 }
若是存在,則從該列表中刪除指定元素的第一次出現
此方法本質上和 remove(int index) 沒多大區別,經過循環判斷元素進行刪除,須要注意的是,是刪除第一次出現的元素,不是全部的。
1 public boolean remove(Object o) { 2 if (o == null) { 3 for (Node<E> x = first; x != null; x = x.next) { 4 if (x.item == null) { 5 unlink(x); 6 return true; 7 } 8 } 9 } else { 10 for (Node<E> x = first; x != null; x = x.next) { 11 if (o.equals(x.item)) { 12 unlink(x); 13 return true; 14 } 15 } 16 } 17 return false; 18 }
經過調用 set(int index, E element) 方法,用指定的元素替換此列表中指定位置的元素。
public E set(int index, E element) { //判斷索引 index >= 0 && index <= size中時拋出IndexOutOfBoundsException異常 checkElementIndex(index); Node<E> x = node(index);//獲取指定索引處的元素 E oldVal = x.item; x.item = element;//將指定位置的元素替換成要修改的元素 return oldVal;//返回指定索引位置原來的元素 }
這裏主要是經過 node(index) 方法獲取指定索引位置的節點,而後修改此節點位置的元素便可。
返回此列表中的第一個元素
1 public E getFirst() { 2 final Node<E> f = first; 3 if (f == null) 4 throw new NoSuchElementException(); 5 return f.item; 6 }
返回此列表中的最後一個元素
1 public E getLast() { 2 final Node<E> l = last; 3 if (l == null) 4 throw new NoSuchElementException(); 5 return l.item; 6 }
返回指定索引處的元素
1 public E get(int index) { 2 checkElementIndex(index); 3 return node(index).item; 4 }
返回此列表中指定元素第一次出現的索引,若是此列表不包含元素,則返回-1。
1 //返回此列表中指定元素第一次出現的索引,若是此列表不包含元素,則返回-1。 2 public int indexOf(Object o) { 3 int index = 0; 4 if (o == null) {//若是查找的元素爲null(LinkedList能夠容許null值) 5 for (Node<E> x = first; x != null; x = x.next) {//從頭結點開始不斷向下一個節點進行遍歷 6 if (x.item == null) 7 return index; 8 index++; 9 } 10 } else {//若是查找的元素不爲null 11 for (Node<E> x = first; x != null; x = x.next) { 12 if (o.equals(x.item)) 13 return index; 14 index++; 15 } 16 } 17 return -1;//找不到返回-1 18 }
LinkedList<String> linkedList = new LinkedList<>(); linkedList.add("A"); linkedList.add("B"); linkedList.add("C"); linkedList.add("D"); for(int i = 0 ; i < linkedList.size() ; i++){ System.out.print(linkedList.get(i)+" ");//A B C D }
代碼很簡單,咱們就利用 LinkedList 的 get(int index) 方法,遍歷出全部的元素。
可是須要注意的是, get(int index) 方法每次都要遍歷該索引以前的全部元素,這句話這麼理解:
好比上面的一個 LinkedList 集合,我放入了 A,B,C,D是個元素。總共須要四次遍歷:
第一次遍歷打印 A:只需遍歷一次。
第二次遍歷打印 B:須要先找到 A,而後再找到 B 打印。
第三次遍歷打印 C:須要先找到 A,而後找到 B,最後找到 C 打印。
第四次遍歷打印 D:須要先找到 A,而後找到 B,而後找到 C,最後找到 D。
這樣若是集合元素不少,越查找到後面(固然此處的get方法進行了優化,查找前半部分從前面開始遍歷,查找後半部分從後面開始遍歷,可是須要的時間仍是不少)花費的時間越多。那麼如何改進呢?
1 LinkedList<String> linkedList = new LinkedList<>(); 2 linkedList.add("A"); 3 linkedList.add("B"); 4 linkedList.add("C"); 5 linkedList.add("D"); 6 7 8 Iterator<String> listIt = linkedList.listIterator(); 9 while(listIt.hasNext()){ 10 System.out.print(listIt.next()+" ");//A B C D 11 } 12 13 //經過適配器模式實現的接口,做用是倒敘打印鏈表 14 Iterator<String> it = linkedList.descendingIterator(); 15 while(it.hasNext()){ 16 System.out.print(it.next()+" ");//D C B A 17 }
在 LinkedList 集合中也有一個內部類 ListItr,方法實現大致上也差很少,經過移動遊標指向每一次要遍歷的元素,不用在遍歷某個元素以前都要從頭開始。其方法實現也比較簡單:
1 public ListIterator<E> listIterator(int index) { 2 checkPositionIndex(index); 3 return new ListItr(index); 4 } 5 6 private class ListItr implements ListIterator<E> { 7 private Node<E> lastReturned; 8 private Node<E> next; 9 private int nextIndex; 10 private int expectedModCount = modCount; 11 12 ListItr(int index) { 13 // assert isPositionIndex(index); 14 next = (index == size) ? null : node(index); 15 nextIndex = index; 16 } 17 18 public boolean hasNext() { 19 return nextIndex < size; 20 } 21 22 public E next() { 23 checkForComodification(); 24 if (!hasNext()) 25 throw new NoSuchElementException(); 26 27 lastReturned = next; 28 next = next.next; 29 nextIndex++; 30 return lastReturned.item; 31 } 32 33 public boolean hasPrevious() { 34 return nextIndex > 0; 35 } 36 37 public E previous() { 38 checkForComodification(); 39 if (!hasPrevious()) 40 throw new NoSuchElementException(); 41 42 lastReturned = next = (next == null) ? last : next.prev; 43 nextIndex--; 44 return lastReturned.item; 45 } 46 47 public int nextIndex() { 48 return nextIndex; 49 } 50 51 public int previousIndex() { 52 return nextIndex - 1; 53 } 54 55 public void remove() { 56 checkForComodification(); 57 if (lastReturned == null) 58 throw new IllegalStateException(); 59 60 Node<E> lastNext = lastReturned.next; 61 unlink(lastReturned); 62 if (next == lastReturned) 63 next = lastNext; 64 else 65 nextIndex--; 66 lastReturned = null; 67 expectedModCount++; 68 } 69 70 public void set(E e) { 71 if (lastReturned == null) 72 throw new IllegalStateException(); 73 checkForComodification(); 74 lastReturned.item = e; 75 } 76 77 public void add(E e) { 78 checkForComodification(); 79 lastReturned = null; 80 if (next == null) 81 linkLast(e); 82 else 83 linkBefore(e, next); 84 nextIndex++; 85 expectedModCount++; 86 } 87 88 public void forEachRemaining(Consumer<? super E> action) { 89 Objects.requireNonNull(action); 90 while (modCount == expectedModCount && nextIndex < size) { 91 action.accept(next.item); 92 lastReturned = next; 93 next = next.next; 94 nextIndex++; 95 } 96 checkForComodification(); 97 } 98 99 final void checkForComodification() { 100 if (modCount != expectedModCount) 101 throw new ConcurrentModificationException(); 102 } 103 }
這裏須要重點注意的是 modCount 字段,前面咱們在增長和刪除元素的時候,都會進行自增操做 modCount,這是由於若是想一邊迭代,一邊用集合自帶的方法進行刪除或者新增操做,都會拋出異常。(使用迭代器的增刪方法不會拋異常)
final void checkForComodification() { if (modCount != expectedModCount) throw new ConcurrentModificationException(); }
好比:
1 LinkedList<String> linkedList = new LinkedList<>(); 2 linkedList.add("A"); 3 linkedList.add("B"); 4 linkedList.add("C"); 5 linkedList.add("D"); 6 7 8 Iterator<String> listIt = linkedList.listIterator(); 9 while(listIt.hasNext()){ 10 System.out.print(listIt.next()+" ");//A B C D 11 //linkedList.remove();//此處會拋出異常 12 listIt.remove();//這樣能夠進行刪除操做 13 }
迭代器的另外一種形式就是使用 foreach 循環,底層實現也是使用的迭代器,這裏咱們就不作介紹了。
LinkedList<String> linkedList = new LinkedList<>(); linkedList.add("A"); linkedList.add("B"); linkedList.add("C"); linkedList.add("D"); for(String str : linkedList){ System.out.print(str + ""); }
1 LinkedList<Integer> linkedList = new LinkedList<>(); 2 for(int i = 0 ; i < 10000 ; i++){//向鏈表中添加一萬個元素 3 linkedList.add(i); 4 } 5 long beginTimeFor = System.currentTimeMillis(); 6 for(int i = 0 ; i < 10000 ; i++){ 7 System.out.print(linkedList.get(i)); 8 } 9 long endTimeFor = System.currentTimeMillis(); 10 System.out.println("使用普通for循環遍歷10000個元素須要的時間:"+ (endTimeFor - beginTimeFor)); 11 12 13 long beginTimeIte = System.currentTimeMillis(); 14 Iterator<Integer> it = linkedList.listIterator(); 15 while(it.hasNext()){ 16 System.out.print(it.next()+" "); 17 } 18 long endTimeIte = System.currentTimeMillis(); 19 System.out.println("使用迭代器遍歷10000個元素須要的時間:"+ (endTimeIte - beginTimeIte));
打印結果爲:
一萬個元素二者之間都相差一倍多的時間,若是是十萬,百萬個元素,那麼二者之間相差的速度會愈來愈大。下面經過圖形來解釋:
普通for循環:每次遍歷一個索引的元素以前,都要訪問之間全部的索引。
迭代器:每次訪問一個元素後,都會用遊標記錄當前訪問元素的位置,遍歷一個元素,記錄一個位置。
參考文檔:https://docs.oracle.com/javase/8/docs/api/java/util/LinkedList.html#