Java开发之LinkedList源码分析

#来自ゾフィー(佐菲)

1 简介

LinkedList 的底层数据结构是双向链表。可以当作链表、栈、队列、双端队列来使用。有以下特点:

  • 在插入或删除数据时,性能好;
  • 允许有 null 值;
  • 查询效率不高;
  • 线程不安全;
复制代码
public class LinkedList<E>
    extends AbstractSequentialList<E>
    implements List<E>, Deque<E>, Cloneable, java.io.Serializable
{}

2 源码

LinkedList 数据结构:

复制代码
private static class Node<E> {
     E item; //结点值
     Node<E> next; //后驱节点
     Node<E> prev; //前驱节点

     Node(Node<E> prev, E element, Node<E> next) {
         this.item = element;
         this.next = next;
         this.prev = prev;
     }
}

LinkedList 两个构造函数:

复制代码
public LinkedList() {}

public LinkedList(Collection<? extends E> c) {
     this();
     addAll(c);
}

addAll()

复制代码
 public boolean addAll(int index, Collection<? extends E> c) {
        //校验 index 是否合理
        checkPositionIndex(index);
        
        Object[] a = c.toArray();
        int numNew = a.length;
        if (numNew == 0)
            return false;
       //succ:待添加节点的位置。
       //pred:待添加节点的前驱节点。  
        Node<E> pred, succ;
        if (index == size) {//在末尾插入
            succ = null;
            pred = last;
        } else { //不在末尾插入
            succ = node(index); //这个方法 会折半
            pred = succ.prev;
        }

        for (Object o : a) {
            //创建新节点
            @SuppressWarnings("unchecked") E e = (E) o;
            Node<E> newNode = new Node<>(pred, e, null);
            if (pred == null)
                first = newNode;
            else
                pred.next = newNode;
            pred = newNode;
        }

        if (succ == null) {
            last = pred;
        } else {
            pred.next = succ;
            succ.prev = pred;
        }
        //把集合的大小设置为新的大小 
        size += numNew;
        modCount++;
        return true;
    }

get() -> 会有折半

复制代码
public E get(int index) {
     //校验 index 是否越界
      checkElementIndex(index);
      return node(index).item;
}

Node<E> node(int index) {
        // assert isElementIndex(index);
        //分一半查找
        if (index < (size >> 1)) {
            Node<E> x = first;
            for (int i = 0; i < index; i++)
                x = x.next;
            return x;
        } else {
            Node<E> x = last;
            for (int i = size - 1; i > index; i--)
                x = x.prev;
            return x;
        }
    }

add()

复制代码
public boolean add(E e) {
   //在末尾追加元素的方法。
    linkLast(e);
    return true;
}

void linkLast(E e) {
      final Node<E> l = last;
      final Node<E> newNode = new Node<>(l, e, null);
      last = newNode;
      if (l == null) //为空链表
          first = newNode;
      else
          l.next = newNode;
      size++;//size 自增
      modCount++;
}

remove()

复制代码
public boolean remove(Object o) {
    if (o == null) {
        for (Node<E> x = first; x != null; x = x.next) {
            if (x.item == null) {
                //移除节点
                unlink(x);
                return true;
            }
        }
    } else {
        for (Node<E> x = first; x != null; x = x.next) {
            if (o.equals(x.item)) {
                unlink(x);
                return true;
            }
        }
     }
    return false;
}

//删除节点
E unlink(Node<E> x) {
      // assert x != null;
      final E element = x.item;
      final Node<E> next = x.next;
      final Node<E> prev = x.prev;
      //1 -> 2 -> 3      1 -> 3
      if (prev == null) { //移除的是头节点
          first = next;
      } else {
          prev.next = next;
          x.prev = null;
      }

      if (next == null) { //移除的是尾节点
          last = prev;
      } else {
          next.prev = prev;
          x.next = null;
      }

      x.item = null;
      size--;
      modCount++;
      return element;
 }

toArray()

复制代码
public Object[] toArray() {
       //创建一个新数组 然后遍历链表,将每个元素存在数组里,返回
       Object[] result = new Object[size];
       int i = 0;
       for (Node<E> x = first; x != null; x = x.next)
           result[i++] = x.item;
       return result;
}
相关推荐
黑客-雨5 分钟前
从零开始:如何用Python训练一个AI模型(超详细教程)非常详细收藏我这一篇就够了!
开发语言·人工智能·python·大模型·ai产品经理·大模型学习·大模型入门
Pandaconda10 分钟前
【Golang 面试题】每日 3 题(三十九)
开发语言·经验分享·笔记·后端·面试·golang·go
是梦终空12 分钟前
JAVA毕业设计210—基于Java+Springboot+vue3的中国历史文化街区管理系统(源代码+数据库)
java·spring boot·vue·毕业设计·课程设计·历史文化街区管理·景区管理
加油,旭杏13 分钟前
【go语言】变量和常量
服务器·开发语言·golang
行路见知14 分钟前
3.3 Go 返回值详解
开发语言·golang
xcLeigh17 分钟前
WPF实战案例 | C# WPF实现大学选课系统
开发语言·c#·wpf
NoneCoder28 分钟前
JavaScript系列(38)-- WebRTC技术详解
开发语言·javascript·webrtc
基哥的奋斗历程36 分钟前
学到一些小知识关于Maven 与 logback 与 jpa 日志
java·数据库·maven
m0_5127446437 分钟前
springboot使用logback自定义日志
java·spring boot·logback
关关钧38 分钟前
【R语言】数学运算
开发语言·r语言