[关闭]
@w1992wishes 2018-05-10T09:34:40.000000Z 字数 9426 阅读 1006

java容器源码分析--LinkedList(JDK1.8)

JAVA_java容器 源码分析


本篇结构:

一、前言

ArrayList和LinkedList都是很常用的容器,它们适合不同的场景。

对于随机访问和设置频繁的场景,应该选用ArrayList,因为ArrayList是基于一个动态数组的容器;而对于插入和删除频繁的场景,应该选用LinkedList,ArrayList插入和删除都需要复制数组,会消耗一定的性能,LinkedList则没有这样的顾虑。

下面就来深入源码来看看它是怎么实现的。

二、数据结构

与ArrayList不同,LinkedList是基于链表实现的。

何为链表?

链表是一种基本的线性数据结构,其和数组同为线性,但是数组是内存的物理存储上呈线性,逻辑上也是线性;而链表只是在逻辑上呈线性。在链表的每一个存储单元中不仅存储有当前的元素,还有下一个存储单元的地址,这样的可以通过地址将所有的存储单元连接在一起。

链表有单向,循环和双向之分。

LinkedList使用的是一个双向链表。

链表中的每个元素都是一个Node对象,其定义在LinkedList内部,Node中有三个属性,分别是:当前节点值、下一个节点引用、上一个节点引用。

  1. private static class Node<E> {
  2. E item; // 当前节点值
  3. Node<E> next; // 下一个节点
  4. Node<E> prev; // 上一个节点
  5. Node(Node<E> prev, E element, Node<E> next) {
  6. this.item = element;
  7. this.next = next;
  8. this.prev = prev;
  9. }
  10. }

三、重要参数

  1. transient int size = 0;
  2. /**
  3. * Pointer to first node.
  4. * Invariant: (first == null && last == null) ||
  5. * (first.prev == null && first.item != null)
  6. */
  7. transient Node<E> first;
  8. /**
  9. * Pointer to last node.
  10. * Invariant: (first == null && last == null) ||
  11. * (last.next == null && last.item != null)
  12. */
  13. transient Node<E> last;

ArrayList有三个重要的属性:

  1. size 是双向链表中节点的个数
  2. first 是双向链表的表头,它是双向链表节点所对应的类Node的实例
  3. ast 是双向链表的最后一个元素,它是双向链表节点所对应的类Node的实例

四、常用方法

同ArrayList相比,LinkedList多了addFirst,addLast,getFirst,getLast,removeFirst,removeLast等实现了Deque接口的相关方法(LinkedList即实现了List接口也实现了Deque接口)。

Deque又继承Queue接口,这里简单说下Queue中remove/poll、 add/offer、 element/peek的区别

1.offer,add区别:

一些队列有大小限制,因此如果想在一个满的队列中加入一个新项,多出的项就会被拒绝。
add() 方法抛出一个 new IllegalStateException("Queue full") 异常,offer 则返回 false。

2.poll,remove区别:

remove() 和 poll() 方法都是从队列中删除第一个元素。

空集合调用remove() 方法时抛出 NoSuchElementException 异常, poll() 方法则返回 null。

3.peek,element区别:

element() 和 peek() 用于在队列的头部查询元素。

与 remove() 方法类似,在队列为空时, element() 抛出一个异常,而 peek() 返回 null。

对于LinkedList,其offer方法不过是对add方法的调用,同add没有区别。

五、源码分析

5.1、构造方法

LinkedList提供了两个构造方法,一个无参构造方法,一个接收 Collection 的构造方法。

  1. public LinkedList() {
  2. }
  3. public LinkedList(Collection<? extends E> c) {
  4. this();
  5. addAll(c);
  6. }

无参构造什么也没做,只是创建了 LinkedList 对象,有参构造则调用了 addAll 方法。

5.2、添加操作

前面提过,LinkedList即实现了List接口,又实现了Deque接口,所以LinkedList既可以添加将元素添加到尾部,也可以将元素添加到指定索引位置,还可以添加添加整个集合;另外既可以在头部添加,又可以在尾部添加。

有addFirst(E e)、addLast(E e)、add(E e)、add(int index, E element)、addAll(Collection c)、addAll(int index, Collection c)、offer(E e)、offerFirst(E e)、offerLast(E e)等添加元素的方法。

1.先看List接口的添加操作

add(E e)

add(E e) 调用 linkLast 将元素插入链表尾部。

  1. public boolean add(E e) {
  2. linkLast(e);
  3. return true;
  4. }
  5. void linkLast(E e) {
  6. // 指向链表尾部
  7. final Node<E> l = last;
  8. // 以尾部为前驱节点创建一个新节点
  9. final Node<E> newNode = new Node<>(l, e, null);
  10. // 将链表尾部指向新节点
  11. last = newNode;
  12. // 如果链表为空,那么该节点既是头节点也是尾节点
  13. if (l == null)
  14. first = newNode;
  15. // 链表不为空,将该结点作为原链表尾部的后继节点
  16. else
  17. l.next = newNode;
  18. // 长度增加
  19. size++;
  20. modCount++;
  21. }

add(int index, E element)

add(int index, E element)在指定位置添加元素。它分三步:

  1. 先检查索引是否越界
  2. 然后判断是不是最后一个索引,是就调用 linkLast 插入尾部
  3. 不是则调用 linkBefore 插入链表中间

linkBefore 方法又调用了 node(index) node(index) 方法返回 index 处的节点,然后 linkBefore 将往index插入新节点,并更新相应节点的 prev,next 属性。

  1. public void add(int index, E element) {
  2. // 检查索引是否处于[0-size]之间
  3. checkPositionIndex(index);
  4. // 索引等于size,相当于插在尾部
  5. if (index == size)
  6. linkLast(element);
  7. // 否则插在链表中间
  8. else
  9. linkBefore(element, node(index));
  10. }
  11. // 返回index处的节点
  12. Node<E> node(int index) {
  13. // assert isElementIndex(index);
  14. // 为提升遍历效率,如果index小于size/2,就顺序往后遍历
  15. if (index < (size >> 1)) {
  16. Node<E> x = first;
  17. for (int i = 0; i < index; i++)
  18. x = x.next;
  19. return x;
  20. // 如果index大于size/2,就逆向往前遍历
  21. } else {
  22. Node<E> x = last;
  23. for (int i = size - 1; i > index; i--)
  24. x = x.prev;
  25. return x;
  26. }
  27. }
  28. // 在链表中间插入节点
  29. void linkBefore(E e, Node<E> succ) {
  30. // assert succ != null;
  31. // 定义一个节点元素保存succ的prev引用,也就是index-1处的节点
  32. final Node<E> pred = succ.prev;
  33. // 根据新增的元素创建新节点,原index处的节点succ变为index+1处的节点
  34. final Node<E> newNode = new Node<>(pred, e, succ);
  35. // 修改succ的上一个节点为插入的新节点
  36. succ.prev = newNode;
  37. // 如果pred是null 表明succ第一个节点
  38. if (pred == null)
  39. // 成员属性first指向新节点
  40. first = newNode;
  41. // 节点前元素(index-1)的next属性指向新节点
  42. else
  43. pred.next = newNode;
  44. size++;
  45. modCount++;
  46. }

addAll方法

addAll有两个重载方法,一个参数的方法表示将集合元素添加到链表尾部,而两个参数的方法指定了开始插入的位置。

  1. // 将集合插入到链表尾部,即开始索引位置为size
  2. public boolean addAll(Collection<? extends E> c) {
  3. return addAll(size, c);
  4. }
  5. // 将集合从指定位置开始插入
  6. public boolean addAll(int index, Collection<? extends E> c) {
  7. // 1.检查索引是否越界,index >= 0 && index <= size
  8. checkPositionIndex(index);
  9. // 2.将集合转化为数组,如果是空数组,直接返回false
  10. Object[] a = c.toArray();
  11. int numNew = a.length;
  12. if (numNew == 0)
  13. return false;
  14. // 3.获取插入位置index处前驱节点和后继节点(要注意,该后继节点是所有元素插入完成后的后继节点)
  15. Node<E> pred, succ;
  16. // 3-1.如果从尾部插入,前驱节点为last,后继节点为null
  17. if (index == size) {
  18. succ = null;
  19. pred = last;
  20. // 3-2.否则通过node(index)得到后继节点,进而拿到前驱节点
  21. } else {
  22. succ = node(index);
  23. pred = succ.prev;
  24. }
  25. // 4.遍历数组逐个插入
  26. for (Object o : a) {
  27. @SuppressWarnings("unchecked")
  28. E e = (E) o;
  29. // 4-1.创建新节点,前驱节点前面已经获取,后继节点为null(因为还未插入)
  30. Node<E> newNode = new Node<>(pred, e, null);
  31. if (pred == null)
  32. first = newNode;
  33. else
  34. // 4-2.在这里更新新插入节点的后继节点
  35. pred.next = newNode;
  36. pred = newNode;
  37. }
  38. // 如果插入位置在尾部,重置last节点
  39. if (succ == null) {
  40. last = pred;
  41. // 否则,将插入的链表与先前链表连接起来
  42. } else {
  43. pred.next = succ;
  44. succ.prev = pred;
  45. }
  46. size += numNew;
  47. modCount++;
  48. return true;
  49. }

2.接着看Deque接口的添加操作

addFirst(E e)

addFirst(E e)将元素添加到链表头部

  1. public void addFirst(E e) {
  2. linkFirst(e);
  3. }
  4. private void linkFirst(E e) {
  5. final Node<E> f = first;
  6. final Node<E> newNode = new Node<>(null, e, f);
  7. first = newNode;
  8. if (f == null)
  9. last = newNode;
  10. else
  11. f.prev = newNode;
  12. size++;
  13. modCount++;
  14. }

addLast(E e)

addLast(E e) 将元素添加到链表尾部

  1. public void addLast(E e) {
  2. linkLast(e);
  3. }

offer(E e)

offer(E e)方法用于将数据添加到链表尾部,其内部调用了add(E e)方法,可见 LinkedList 的 add (其 add 方法应该归属于 List 接口)和 offer 方法没有区别,并不是 Queue 接口中 add 满了就抛错,offer 返回false。

  1. public boolean offer(E e) {
  2. return add(e);
  3. }

offerFirst(E e) & offerLast(E e)

  1. public boolean offerFirst(E e) {
  2. addFirst(e);
  3. return true;
  4. }
  5. public boolean offerLast(E e) {
  6. addLast(e);
  7. return true;
  8. }

Deque接口的几个添加方法相对简单,就不多说。

5.3、检索操作

1.List接口检索操作

get(int index)

get(int index) 获取索引index处得元素

  1. public E get(int index) {
  2. // index >= 0 && index < size
  3. checkElementIndex(index);
  4. // 获取 index 的 node 节点的 item
  5. return node(index).item;
  6. }

indexOf(Object o)

indexOf(Object o) 返回第一个匹配的节点所在的索引

  1. public int indexOf(Object o) {
  2. int index = 0;
  3. // 为null
  4. if (o == null) {
  5. for (Node<E> x = first; x != null; x = x.next) {
  6. if (x.item == null)
  7. return index;
  8. index++;
  9. }
  10. // 不为null
  11. } else {
  12. for (Node<E> x = first; x != null; x = x.next) {
  13. if (o.equals(x.item))
  14. return index;
  15. index++;
  16. }
  17. }
  18. return -1;
  19. }

contains(Object o)

contains(Object o)方法检查对象o是否存在于链表中,调用indexOf(o)方法判断,不等于-1代表存在。

  1. public boolean contains(Object o) {
  2. return indexOf(o) != -1;
  3. }

2.Deque接口检索操作

getFirst() & getLast()

获取头节点元素 & 尾节点元素

  1. public E getFirst() {
  2. final Node<E> f = first;
  3. if (f == null)
  4. throw new NoSuchElementException();
  5. return f.item;
  6. }
  7. public E getLast() {
  8. final Node<E> l = last;
  9. if (l == null)
  10. throw new NoSuchElementException();
  11. return l.item;
  12. }

peek() & element()

element()方法的内部就是使用getFirst()实现的,在链表为空时,抛出NoSuchElementException,peek直接返回null。

  1. public E peek() {
  2. final Node<E> f = first;
  3. return (f == null) ? null : f.item;
  4. }
  5. public E element() {
  6. return getFirst();
  7. }

5.4、删除操作

1.List接口删除操作

remove(int index)

remove(int index)删除 index 索引处的节点

  1. public E remove(int index) {
  2. // 1.index >= 0 && index < size
  3. checkElementIndex(index);
  4. // 2.unlink
  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) {
  14. first = next;
  15. } else {
  16. prev.next = next;
  17. x.prev = null;
  18. }
  19. // 将待删除的节点同后继节点断开,并将后继节点与前驱节点关联
  20. if (next == null) {
  21. last = prev;
  22. } else {
  23. next.prev = prev;
  24. x.next = null;
  25. }
  26. x.item = null;
  27. size--;
  28. modCount++;
  29. return element;
  30. }

remove(Object o)

remove(Object o)删除指定对象

  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. }

2.Deque接口删除操作

removeFirst() & removeLast()

  1. public E removeFirst() {
  2. final Node<E> f = first;
  3. if (f == null)
  4. throw new NoSuchElementException();
  5. return unlinkFirst(f);
  6. }
  7. public E removeLast() {
  8. final Node<E> l = last;
  9. if (l == null)
  10. throw new NoSuchElementException();
  11. return unlinkLast(l);
  12. }

poll() & remove() & pop()

remove()和pop()内部调用了removeFirst()方法,而removeFirst()在链表为空时将抛出NoSuchElementException。

  1. public E poll() {
  2. final Node<E> f = first;
  3. return (f == null) ? null : unlinkFirst(f);
  4. }
  5. public E remove() {
  6. return removeFirst();
  7. }
  8. public E pop() {
  9. return removeFirst();
  10. }

5.5、迭代操作

iterator()

iterator()调用listIterator(),listIterator()调用其有参重载listIterator(final int index),这里看到可以从指定索引处开始迭代。

  1. public Iterator<E> iterator() {
  2. return listIterator();
  3. }
  4. public ListIterator<E> listIterator() {
  5. return listIterator(0);
  6. }
  7. public ListIterator<E> listIterator(final int index) {
  8. rangeCheckForAdd(index);
  9. return new ListItr(index);
  10. }

ListItr是AbstractList中的一个私有内部类,运用起来是先判断 hasPrevious() ,如果true,则 previous(), 或者 hasNext(),如果true,则 next()。hasNext()和next()定义在其父类Itr中。

  1. private class ListItr extends Itr implements ListIterator<E> {
  2. ListItr(int index) {
  3. cursor = index;
  4. }
  5. public boolean hasPrevious() {
  6. return cursor != 0;
  7. }
  8. public E previous() {
  9. checkForComodification();
  10. try {
  11. int i = cursor - 1;
  12. E previous = get(i);
  13. lastRet = cursor = i;
  14. return previous;
  15. } catch (IndexOutOfBoundsException e) {
  16. checkForComodification();
  17. throw new NoSuchElementException();
  18. }
  19. }
  20. public int nextIndex() {
  21. return cursor;
  22. }
  23. public int previousIndex() {
  24. return cursor-1;
  25. }
  26. public void set(E e) {
  27. if (lastRet < 0)
  28. throw new IllegalStateException();
  29. checkForComodification();
  30. try {
  31. AbstractList.this.set(lastRet, e);
  32. expectedModCount = modCount;
  33. } catch (IndexOutOfBoundsException ex) {
  34. throw new ConcurrentModificationException();
  35. }
  36. }
  37. public void add(E e) {
  38. checkForComodification();
  39. try {
  40. int i = cursor;
  41. AbstractList.this.add(i, e);
  42. lastRet = -1;
  43. cursor = i + 1;
  44. expectedModCount = modCount;
  45. } catch (IndexOutOfBoundsException ex) {
  46. throw new ConcurrentModificationException();
  47. }
  48. }
  49. }

六、疑问解答

ArrayList和LinkedList的区别:

  1. ArrayList是基于动态数组的数据结构,LinkedList是基于链表的数据结构。
  2. 对于随机访问get和set,ArrayList觉得优于LinkedList,因为LinkedList遍历链表移动指针。
  3. 对于新增和删除操作add和remove,LinedList比较占优势,因为ArrayList要复制移动数据。

七、分析总结

LinkedList是基于双向链表的数据结构,下面还是同ArrayList一起分析:

ArrayList和LinkedList在性能上各有优缺点,都有各自所适用的地方:

  1. 对ArrayList和LinkedList而言,在列表末尾增加一个元素所花的开销都是固定的。ArrayList主要是在内部数组中增加一项,指向所添加的元素,偶尔可能会导致数组动态扩容;LinkedList开销是统一的,分配一个内部Node对象加到链表尾部。
  2. 在ArrayList的中间插入或删除一个元素意味着这个列表中剩余的元素都会被移动;而在LinkedList的中间插入或删除一个元素的开销是固定的,先遍历移动指针到index位置,然后更新Node的前驱节点和后继节点。
  3. LinkedList不支持高效的随机元素访问,随机访问时,需要先顺序移动指针到索引处。
  4. ArrayList的空间浪费主要体现在在list列表的结尾预留一定的容量空间,而LinkedList的空间花费则体现在它的每一个元素都需要消耗相当的空间,因为要保留前驱节点和后继节点的引用。

总体来说:

当操作是在一列数据的后面添加数据而不是在前面或中间,并且需要随机地访问其中的元素时,使用ArrayList会提供比较好的性能;

当操作是在一列数据的前面或中间添加或删除数据,并且按照顺序访问其中的元素时,就应该使用LinkedList了。

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注