1. 程式人生 > >轉:【Java集合源碼剖析】LinkedList源碼剖析

轉:【Java集合源碼剖析】LinkedList源碼剖析

exception 循環鏈表 位置 src zab ear 方法 劃分 head

轉載請註明出處:http://blog.csdn.net/ns_code/article/details/35787253

您好,我正在參加CSDN博文大賽,如果您喜歡我的文章,希望您能幫我投一票,謝謝!

投票地址:http://vote.blog.csdn.net/Article/Details?articleid=35568011

LinkedList簡介

LinkedList是基於雙向循環鏈表(從源碼中可以很容易看出)實現的,除了可以當做鏈表來操作外,它還可以當做棧、隊列和雙端隊列來使用。

LinkedList同樣是非線程安全的,只在單線程下適合使用。

LinkedList實現了Serializable接口,因此它支持序列化,能夠通過序列化傳輸,實現了Cloneable接口,能被克隆。

LinkedList源碼剖析

LinkedList的源碼如下(加入了比較詳細的註釋):

[java] view plain copy
  1. package java.util;
  2. public class LinkedList<E>
  3. extends AbstractSequentialList<E>
  4. implements List<E>, Deque<E>, Cloneable, java.io.Serializable
  5. {
  6. // 鏈表的表頭,表頭不包含任何數據。Entry是個鏈表類數據結構。
  7. private transient Entry<E> header = new Entry<E>(null, null, null);
  8. // LinkedList中元素個數
  9. private transient int size = 0;
  10. // 默認構造函數:創建一個空的鏈表
  11. public LinkedList() {
  12. header.next = header.previous = header;
  13. }
  14. // 包含“集合”的構造函數:創建一個包含“集合”的LinkedList
  15. public LinkedList(Collection<? extends E> c) {
  16. this();
  17. addAll(c);
  18. }
  19. // 獲取LinkedList的第一個元素
  20. public E getFirst() {
  21. if (size==0)
  22. throw new NoSuchElementException();
  23. // 鏈表的表頭header中不包含數據。
  24. // 這裏返回header所指下一個節點所包含的數據。
  25. return header.next.element;
  26. }
  27. // 獲取LinkedList的最後一個元素
  28. public E getLast() {
  29. if (size==0)
  30. throw new NoSuchElementException();
  31. // 由於LinkedList是雙向鏈表;而表頭header不包含數據。
  32. // 因而,這裏返回表頭header的前一個節點所包含的數據。
  33. return header.previous.element;
  34. }
  35. // 刪除LinkedList的第一個元素
  36. public E removeFirst() {
  37. return remove(header.next);
  38. }
  39. // 刪除LinkedList的最後一個元素
  40. public E removeLast() {
  41. return remove(header.previous);
  42. }
  43. // 將元素添加到LinkedList的起始位置
  44. public void addFirst(E e) {
  45. addBefore(e, header.next);
  46. }
  47. // 將元素添加到LinkedList的結束位置
  48. public void addLast(E e) {
  49. addBefore(e, header);
  50. }
  51. // 判斷LinkedList是否包含元素(o)
  52. public boolean contains(Object o) {
  53. return indexOf(o) != -1;
  54. }
  55. // 返回LinkedList的大小
  56. public int size() {
  57. return size;
  58. }
  59. // 將元素(E)添加到LinkedList中
  60. public boolean add(E e) {
  61. // 將節點(節點數據是e)添加到表頭(header)之前。
  62. // 即,將節點添加到雙向鏈表的末端。
  63. addBefore(e, header);
  64. return true;
  65. }
  66. // 從LinkedList中刪除元素(o)
  67. // 從鏈表開始查找,如存在元素(o)則刪除該元素並返回true;
  68. // 否則,返回false。
  69. public boolean remove(Object o) {
  70. if (o==null) {
  71. // 若o為null的刪除情況
  72. for (Entry<E> e = header.next; e != header; e = e.next) {
  73. if (e.element==null) {
  74. remove(e);
  75. return true;
  76. }
  77. }
  78. } else {
  79. // 若o不為null的刪除情況
  80. for (Entry<E> e = header.next; e != header; e = e.next) {
  81. if (o.equals(e.element)) {
  82. remove(e);
  83. return true;
  84. }
  85. }
  86. }
  87. return false;
  88. }
  89. // 將“集合(c)”添加到LinkedList中。
  90. // 實際上,是從雙向鏈表的末尾開始,將“集合(c)”添加到雙向鏈表中。
  91. public boolean addAll(Collection<? extends E> c) {
  92. return addAll(size, c);
  93. }
  94. // 從雙向鏈表的index開始,將“集合(c)”添加到雙向鏈表中。
  95. public boolean addAll(int index, Collection<? extends E> c) {
  96. if (index < 0 || index > size)
  97. throw new IndexOutOfBoundsException("Index: "+index+
  98. ", Size: "+size);
  99. Object[] a = c.toArray();
  100. // 獲取集合的長度
  101. int numNew = a.length;
  102. if (numNew==0)
  103. return false;
  104. modCount++;
  105. // 設置“當前要插入節點的後一個節點”
  106. Entry<E> successor = (index==size ? header : entry(index));
  107. // 設置“當前要插入節點的前一個節點”
  108. Entry<E> predecessor = successor.previous;
  109. // 將集合(c)全部插入雙向鏈表中
  110. for (int i=0; i<numNew; i++) {
  111. Entry<E> e = new Entry<E>((E)a[i], successor, predecessor);
  112. predecessor.next = e;
  113. predecessor = e;
  114. }
  115. successor.previous = predecessor;
  116. // 調整LinkedList的實際大小
  117. size += numNew;
  118. return true;
  119. }
  120. // 清空雙向鏈表
  121. public void clear() {
  122. Entry<E> e = header.next;
  123. // 從表頭開始,逐個向後遍歷;對遍歷到的節點執行一下操作:
  124. // (01) 設置前一個節點為null
  125. // (02) 設置當前節點的內容為null
  126. // (03) 設置後一個節點為“新的當前節點”
  127. while (e != header) {
  128. Entry<E> next = e.next;
  129. e.next = e.previous = null;
  130. e.element = null;
  131. e = next;
  132. }
  133. header.next = header.previous = header;
  134. // 設置大小為0
  135. size = 0;
  136. modCount++;
  137. }
  138. // 返回LinkedList指定位置的元素
  139. public E get(int index) {
  140. return entry(index).element;
  141. }
  142. // 設置index位置對應的節點的值為element
  143. public E set(int index, E element) {
  144. Entry<E> e = entry(index);
  145. E oldVal = e.element;
  146. e.element = element;
  147. return oldVal;
  148. }
  149. // 在index前添加節點,且節點的值為element
  150. public void add(int index, E element) {
  151. addBefore(element, (index==size ? header : entry(index)));
  152. }
  153. // 刪除index位置的節點
  154. public E remove(int index) {
  155. return remove(entry(index));
  156. }
  157. // 獲取雙向鏈表中指定位置的節點
  158. private Entry<E> entry(int index) {
  159. if (index < 0 || index >= size)
  160. throw new IndexOutOfBoundsException("Index: "+index+
  161. ", Size: "+size);
  162. Entry<E> e = header;
  163. // 獲取index處的節點。
  164. // 若index < 雙向鏈表長度的1/2,則從前先後查找;
  165. // 否則,從後向前查找。
  166. if (index < (size >> 1)) {
  167. for (int i = 0; i <= index; i++)
  168. e = e.next;
  169. } else {
  170. for (int i = size; i > index; i--)
  171. e = e.previous;
  172. }
  173. return e;
  174. }
  175. // 從前向後查找,返回“值為對象(o)的節點對應的索引”
  176. // 不存在就返回-1
  177. public int indexOf(Object o) {
  178. int index = 0;
  179. if (o==null) {
  180. for (Entry e = header.next; e != header; e = e.next) {
  181. if (e.element==null)
  182. return index;
  183. index++;
  184. }
  185. } else {
  186. for (Entry e = header.next; e != header; e = e.next) {
  187. if (o.equals(e.element))
  188. return index;
  189. index++;
  190. }
  191. }
  192. return -1;
  193. }
  194. // 從後向前查找,返回“值為對象(o)的節點對應的索引”
  195. // 不存在就返回-1
  196. public int lastIndexOf(Object o) {
  197. int index = size;
  198. if (o==null) {
  199. for (Entry e = header.previous; e != header; e = e.previous) {
  200. index--;
  201. if (e.element==null)
  202. return index;
  203. }
  204. } else {
  205. for (Entry e = header.previous; e != header; e = e.previous) {
  206. index--;
  207. if (o.equals(e.element))
  208. return index;
  209. }
  210. }
  211. return -1;
  212. }
  213. // 返回第一個節點
  214. // 若LinkedList的大小為0,則返回null
  215. public E peek() {
  216. if (size==0)
  217. return null;
  218. return getFirst();
  219. }
  220. // 返回第一個節點
  221. // 若LinkedList的大小為0,則拋出異常
  222. public E element() {
  223. return getFirst();
  224. }
  225. // 刪除並返回第一個節點
  226. // 若LinkedList的大小為0,則返回null
  227. public E poll() {
  228. if (size==0)
  229. return null;
  230. return removeFirst();
  231. }
  232. // 將e添加雙向鏈表末尾
  233. public boolean offer(E e) {
  234. return add(e);
  235. }
  236. // 將e添加雙向鏈表開頭
  237. public boolean offerFirst(E e) {
  238. addFirst(e);
  239. return true;
  240. }
  241. // 將e添加雙向鏈表末尾
  242. public boolean offerLast(E e) {
  243. addLast(e);
  244. return true;
  245. }
  246. // 返回第一個節點
  247. // 若LinkedList的大小為0,則返回null
  248. public E peekFirst() {
  249. if (size==0)
  250. return null;
  251. return getFirst();
  252. }
  253. // 返回最後一個節點
  254. // 若LinkedList的大小為0,則返回null
  255. public E peekLast() {
  256. if (size==0)
  257. return null;
  258. return getLast();
  259. }
  260. // 刪除並返回第一個節點
  261. // 若LinkedList的大小為0,則返回null
  262. public E pollFirst() {
  263. if (size==0)
  264. return null;
  265. return removeFirst();
  266. }
  267. // 刪除並返回最後一個節點
  268. // 若LinkedList的大小為0,則返回null
  269. public E pollLast() {
  270. if (size==0)
  271. return null;
  272. return removeLast();
  273. }
  274. // 將e插入到雙向鏈表開頭
  275. public void push(E e) {
  276. addFirst(e);
  277. }
  278. // 刪除並返回第一個節點
  279. public E pop() {
  280. return removeFirst();
  281. }
  282. // 從LinkedList開始向後查找,刪除第一個值為元素(o)的節點
  283. // 從鏈表開始查找,如存在節點的值為元素(o)的節點,則刪除該節點
  284. public boolean removeFirstOccurrence(Object o) {
  285. return remove(o);
  286. }
  287. // 從LinkedList末尾向前查找,刪除第一個值為元素(o)的節點
  288. // 從鏈表開始查找,如存在節點的值為元素(o)的節點,則刪除該節點
  289. public boolean removeLastOccurrence(Object o) {
  290. if (o==null) {
  291. for (Entry<E> e = header.previous; e != header; e = e.previous) {
  292. if (e.element==null) {
  293. remove(e);
  294. return true;
  295. }
  296. }
  297. } else {
  298. for (Entry<E> e = header.previous; e != header; e = e.previous) {
  299. if (o.equals(e.element)) {
  300. remove(e);
  301. return true;
  302. }
  303. }
  304. }
  305. return false;
  306. }
  307. // 返回“index到末尾的全部節點”對應的ListIterator對象(List叠代器)
  308. public ListIterator<E> listIterator(int index) {
  309. return new ListItr(index);
  310. }
  311. // List叠代器
  312. private class ListItr implements ListIterator<E> {
  313. // 上一次返回的節點
  314. private Entry<E> lastReturned = header;
  315. // 下一個節點
  316. private Entry<E> next;
  317. // 下一個節點對應的索引值
  318. private int nextIndex;
  319. // 期望的改變計數。用來實現fail-fast機制。
  320. private int expectedModCount = modCount;
  321. // 構造函數。
  322. // 從index位置開始進行叠代
  323. ListItr(int index) {
  324. // index的有效性處理
  325. if (index < 0 || index > size)
  326. throw new IndexOutOfBoundsException("Index: "+index+ ", Size: "+size);
  327. // 若 “index 小於 ‘雙向鏈表長度的一半’”,則從第一個元素開始往後查找;
  328. // 否則,從最後一個元素往前查找。
  329. if (index < (size >> 1)) {
  330. next = header.next;
  331. for (nextIndex=0; nextIndex<index; nextIndex++)
  332. next = next.next;
  333. } else {
  334. next = header;
  335. for (nextIndex=size; nextIndex>index; nextIndex--)
  336. next = next.previous;
  337. }
  338. }
  339. // 是否存在下一個元素
  340. public boolean hasNext() {
  341. // 通過元素索引是否等於“雙向鏈表大小”來判斷是否達到最後。
  342. return nextIndex != size;
  343. }
  344. // 獲取下一個元素
  345. public E next() {
  346. checkForComodification();
  347. if (nextIndex == size)
  348. throw new NoSuchElementException();
  349. lastReturned = next;
  350. // next指向鏈表的下一個元素
  351. next = next.next;
  352. nextIndex++;
  353. return lastReturned.element;
  354. }
  355. // 是否存在上一個元素
  356. public boolean hasPrevious() {
  357. // 通過元素索引是否等於0,來判斷是否達到開頭。
  358. return nextIndex != 0;
  359. }
  360. // 獲取上一個元素
  361. public E previous() {
  362. if (nextIndex == 0)
  363. throw new NoSuchElementException();
  364. // next指向鏈表的上一個元素
  365. lastReturned = next = next.previous;
  366. nextIndex--;
  367. checkForComodification();
  368. return lastReturned.element;
  369. }
  370. // 獲取下一個元素的索引
  371. public int nextIndex() {
  372. return nextIndex;
  373. }
  374. // 獲取上一個元素的索引
  375. public int previousIndex() {
  376. return nextIndex-1;
  377. }
  378. // 刪除當前元素。
  379. // 刪除雙向鏈表中的當前節點
  380. public void remove() {
  381. checkForComodification();
  382. Entry<E> lastNext = lastReturned.next;
  383. try {
  384. LinkedList.this.remove(lastReturned);
  385. } catch (NoSuchElementException e) {
  386. throw new IllegalStateException();
  387. }
  388. if (next==lastReturned)
  389. next = lastNext;
  390. else
  391. nextIndex--;
  392. lastReturned = header;
  393. expectedModCount++;
  394. }
  395. // 設置當前節點為e
  396. public void set(E e) {
  397. if (lastReturned == header)
  398. throw new IllegalStateException();
  399. checkForComodification();
  400. lastReturned.element = e;
  401. }
  402. // 將e添加到當前節點的前面
  403. public void add(E e) {
  404. checkForComodification();
  405. lastReturned = header;
  406. addBefore(e, next);
  407. nextIndex++;
  408. expectedModCount++;
  409. }
  410. // 判斷 “modCount和expectedModCount是否相等”,依次來實現fail-fast機制。
  411. final void checkForComodification() {
  412. if (modCount != expectedModCount)
  413. throw new ConcurrentModificationException();
  414. }
  415. }
  416. // 雙向鏈表的節點所對應的數據結構。
  417. // 包含3部分:上一節點,下一節點,當前節點值。
  418. private static class Entry<E> {
  419. // 當前節點所包含的值
  420. E element;
  421. // 下一個節點
  422. Entry<E> next;
  423. // 上一個節點
  424. Entry<E> previous;
  425. /**
  426. * 鏈表節點的構造函數。
  427. * 參數說明:
  428. * element —— 節點所包含的數據
  429. * next —— 下一個節點
  430. * previous —— 上一個節點
  431. */
  432. Entry(E element, Entry<E> next, Entry<E> previous) {
  433. this.element = element;
  434. this.next = next;
  435. this.previous = previous;
  436. }
  437. }
  438. // 將節點(節點數據是e)添加到entry節點之前。
  439. private Entry<E> addBefore(E e, Entry<E> entry) {
  440. // 新建節點newEntry,將newEntry插入到節點e之前;並且設置newEntry的數據是e
  441. Entry<E> newEntry = new Entry<E>(e, entry, entry.previous);
  442. newEntry.previous.next = newEntry;
  443. newEntry.next.previous = newEntry;
  444. // 修改LinkedList大小
  445. size++;
  446. // 修改LinkedList的修改統計數:用來實現fail-fast機制。
  447. modCount++;
  448. return newEntry;
  449. }
  450. // 將節點從鏈表中刪除
  451. private E remove(Entry<E> e) {
  452. if (e == header)
  453. throw new NoSuchElementException();
  454. E result = e.element;
  455. e.previous.next = e.next;
  456. e.next.previous = e.previous;
  457. e.next = e.previous = null;
  458. e.element = null;
  459. size--;
  460. modCount++;
  461. return result;
  462. }
  463. // 反向叠代器
  464. public Iterator<E> descendingIterator() {
  465. return new DescendingIterator();
  466. }
  467. // 反向叠代器實現類。
  468. private class DescendingIterator implements Iterator {
  469. final ListItr itr = new ListItr(size());
  470. // 反向叠代器是否下一個元素。
  471. // 實際上是判斷雙向鏈表的當前節點是否達到開頭
  472. public boolean hasNext() {
  473. return itr.hasPrevious();
  474. }
  475. // 反向叠代器獲取下一個元素。
  476. // 實際上是獲取雙向鏈表的前一個節點
  477. public E next() {
  478. return itr.previous();
  479. }
  480. // 刪除當前節點
  481. public void remove() {
  482. itr.remove();
  483. }
  484. }
  485. // 返回LinkedList的Object[]數組
  486. public Object[] toArray() {
  487. // 新建Object[]數組
  488. Object[] result = new Object[size];
  489. int i = 0;
  490. // 將鏈表中所有節點的數據都添加到Object[]數組中
  491. for (Entry<E> e = header.next; e != header; e = e.next)
  492. result[i++] = e.element;
  493. return result;
  494. }
  495. // 返回LinkedList的模板數組。所謂模板數組,即可以將T設為任意的數據類型
  496. public <T> T[] toArray(T[] a) {
  497. // 若數組a的大小 < LinkedList的元素個數(意味著數組a不能容納LinkedList中全部元素)
  498. // 則新建一個T[]數組,T[]的大小為LinkedList大小,並將該T[]賦值給a。
  499. if (a.length < size)
  500. a = (T[])java.lang.reflect.Array.newInstance(
  501. a.getClass().getComponentType(), size);
  502. // 將鏈表中所有節點的數據都添加到數組a中
  503. int i = 0;
  504. Object[] result = a;
  505. for (Entry<E> e = header.next; e != header; e = e.next)
  506. result[i++] = e.element;
  507. if (a.length > size)
  508. a[size] = null;
  509. return a;
  510. }
  511. // 克隆函數。返回LinkedList的克隆對象。
  512. public Object clone() {
  513. LinkedList<E> clone = null;
  514. // 克隆一個LinkedList克隆對象
  515. try {
  516. clone = (LinkedList<E>) super.clone();
  517. } catch (CloneNotSupportedException e) {
  518. throw new InternalError();
  519. }
  520. // 新建LinkedList表頭節點
  521. clone.header = new Entry<E>(null, null, null);
  522. clone.header.next = clone.header.previous = clone.header;
  523. clone.size = 0;
  524. clone.modCount = 0;
  525. // 將鏈表中所有節點的數據都添加到克隆對象中
  526. for (Entry<E> e = header.next; e != header; e = e.next)
  527. clone.add(e.element);
  528. return clone;
  529. }
  530. // java.io.Serializable的寫入函數
  531. // 將LinkedList的“容量,所有的元素值”都寫入到輸出流中
  532. private void writeObject(java.io.ObjectOutputStream s)
  533. throws java.io.IOException {
  534. // Write out any hidden serialization magic
  535. s.defaultWriteObject();
  536. // 寫入“容量”
  537. s.writeInt(size);
  538. // 將鏈表中所有節點的數據都寫入到輸出流中
  539. for (Entry e = header.next; e != header; e = e.next)
  540. s.writeObject(e.element);
  541. }
  542. // java.io.Serializable的讀取函數:根據寫入方式反向讀出
  543. // 先將LinkedList的“容量”讀出,然後將“所有的元素值”讀出
  544. private void readObject(java.io.ObjectInputStream s)
  545. throws java.io.IOException, ClassNotFoundException {
  546. // Read in any hidden serialization magic
  547. s.defaultReadObject();
  548. // 從輸入流中讀取“容量”
  549. int size = s.readInt();
  550. // 新建鏈表表頭節點
  551. header = new Entry<E>(null, null, null);
  552. header.next = header.previous = header;
  553. // 從輸入流中將“所有的元素值”並逐個添加到鏈表中
  554. for (int i=0; i<size; i++)
  555. addBefore((E)s.readObject(), header);
  556. }
  557. }

幾點總結

關於LinkedList的源碼,給出幾點比較重要的總結:

1、從源碼中很明顯可以看出,LinkedList的實現是基於雙向循環鏈表的,且頭結點中不存放數據,如下圖;

技術分享

2、註意兩個不同的構造方法。無參構造方法直接建立一個僅包含head節點的空鏈表,包含Collection的構造方法,先調用無參構造方法建立一個空鏈表,而後將Collection中的數據加入到鏈表的尾部後面。

3、在查找和刪除某元素時,源碼中都劃分為該元素為null和不為null兩種情況來處理,LinkedList中允許元素為null。

4、LinkedList是基於鏈表實現的,因此不存在容量不足的問題,所以這裏沒有擴容的方法。

5、註意源碼中的Entry<E> entry(int index)方法。該方法返回雙向鏈表中指定位置處的節點,而鏈表中是沒有下標索引的,要指定位置出的元素,就要遍歷該鏈表,從源碼的實現中,我們看到這裏有一個加速動作。源碼中先將index與長度size的一半比較,如果index<size/2,就只從位置0往後遍歷到位置index處,而如果index>size/2,就只從位置size往前遍歷到位置index處。這樣可以減少一部分不必要的遍歷,從而提高一定的效率(實際上效率還是很低)。

6、註意鏈表類對應的數據結構Entry。如下;

[java] view plain copy
  1. // 雙向鏈表的節點所對應的數據結構。
  2. // 包含3部分:上一節點,下一節點,當前節點值。
  3. private static class Entry<E> {
  4. // 當前節點所包含的值
  5. E element;
  6. // 下一個節點
  7. Entry<E> next;
  8. // 上一個節點
  9. Entry<E> previous;
  10. /**
  11. * 鏈表節點的構造函數。
  12. * 參數說明:
  13. * element —— 節點所包含的數據
  14. * next —— 下一個節點
  15. * previous —— 上一個節點
  16. */
  17. Entry(E element, Entry<E> next, Entry<E> previous) {
  18. this.element = element;
  19. this.next = next;
  20. this.previous = previous;
  21. }
  22. }

7、LinkedList是基於鏈表實現的,因此插入刪除效率高,查找效率低(雖然有一個加速動作)。
8、要註意源碼中還實現了棧和隊列的操作方法,因此也可以作為棧、隊列和雙端隊列來使用。

轉:【Java集合源碼剖析】LinkedList源碼剖析