java提高篇(五)LinkedList

一、概述

   LinkedList与ArrayList一样实现List接口,只是ArrayList是List接口的大小可变数组的实现,LinkedList是List接口链表的实现。基于链表实现的方式使得LinkedList在插入和删除时更优于ArrayList,而随机访问则比ArrayList逊色些。

   LinkedList实现所有可选的列表操作,并允许所有的元素包括null。

除了实现 List 接口外,LinkedList 类还为在列表的开头及结尾 get、remove 和 insert 元素提供了统一的命名方法。这些操作允许将链接列表用作堆栈、队列或双端队列。

   此类实现 Deque 接口,为 add、poll 提供先进先出队列操作,以及其他堆栈和双端队列操作。

   所有操作都是按照双重链接列表的需要执行的。在列表中编索引的操作将从开头或结尾遍历列表(从靠近指定索引的一端)。

同时,与ArrayList一样此实现不是同步的。

(以上摘自JDK 6.0 API)。

二、实现原理:

LinkedList内部采用 【双向循环链表】来实现数据的增删查。

三、源码分析

3.1、定义

public class LinkedList<E>
    extends AbstractSequentialList<E>
    implements List<E>, Deque<E>, Cloneable, java.io.Serializable
   从这段代码中我们可以清晰地看出LinkedList继承AbstractSequentialList,实现List、Deque、Cloneable、Serializable。其中AbstractSequentialList提供了 List 接口的骨干实现,从而最大限度地减少了实现受“连续访问”数据存储(如链接列表)支持的此接口所需的工作,从而以减少实现List接口的复杂度。Deque一个线性 collection,支持在两端插入和移除元素,定义了双端队列的操作。

3.2、属性

在LinkedList中提供了两个基本属性size、header。
其中size表示的LinkedList的大小,header表示链表的表头(每个linkedlist集合的表头节点都是空的,之后添加的节点都是在header节点之后),Entry为节点对象。

private transient Entry<E> header = new Entry<E>(null, null, null);
    private transient int size = 0;

其中size表示的LinkedList的大小,header表示链表的表头,Entry为节点对象。

private static class Entry<E> {
    E element;
    Entry<E> next;
    Entry<E> previous;

    Entry(E element, Entry<E> next, Entry<E> previous) {
        this.element = element;
        this.next = next;
        this.previous = previous;
    }
    }

上面为Entry对象的源代码,Entry为LinkedList的内部类,它定义了存储的元素。该元素的前一个元素、后一个元素,这是典型的双向链表定义方式

四、方法

4.1构造方法:

public LinkedList() {
        header.next = header.previous = header;
}


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

LinkedList()构造一个空列表。里面没有任何元素,仅仅只是将header节点的前一个元素、后一个元素都指向自身。——即双向循环空链表,如下图所示
这里写图片描述

LinkedList(Collection

 //构造方法二
 public LinkedList(Collection<? extends E> c) {
    this();    //先构造一个空列表
    addAll(c);  //把c集合中的数据添加到默认构造方法中
 }

/** 
    添加指定 collection 中的所有元素到此列表的结尾,顺序是指定 collection 的迭代器返回这些元素的顺序。      
  */  
public boolean addAll(Collection<? extends E> c) {
        return addAll(size, c);
}
 /** 
    将指定 collection 中的所有元素从指定位置开始插入此列表。其中index表示在其中插入指定collection中第一个元素的索引 
*/ 

public boolean addAll(int index, Collection<? extends E> c) {
        //若插入的位置小于0或者大于链表长度,则抛出IndexOutOfBoundsException异常 
        if (index < 0 || index > size)
            throw new IndexOutOfBoundsException("Index: "+index+
                                                ", Size: "+size);
        Object[] a = c.toArray();
        int numNew = a.length;   //插入元素的个数 
       //若插入的元素为空,则返回false,插入失败  
        if (numNew==0)
            return false;
    modCount++;
        //获取插入位置的节点,若插入的位置在size处,则是头节点,否则获取index位置处的节点
        Entry<E> successor = (index==size ? header : entry(index));
        //得到插入位置的前一个节点,在插入过程中需要修改该节点的next引用:指向插入的节点元素 
        Entry<E> predecessor = successor.previous;
        //双向循环链表插入节点的原理
    for (int i=0; i<numNew; i++) {
            Entry<E> e = new Entry<E>((E)a[i], successor, predecessor);
            predecessor.next = e;
            predecessor = e;
        }
        successor.previous = predecessor;
        //修改容量大小
        size += numNew;
        return true;
}
在addAll()方法中,涉及到了entry(int index)方法,该方法为LinkedList的私有方法,主要是用来查找index位置的节点元素。
 private Entry<E> entry(int index) {
        if (index < 0 || index >= size)
            throw new IndexOutOfBoundsException("Index: "+index+
                                                ", Size: "+size);
        Entry<E> e = header;
        if (index < (size >> 1)) {
            for (int i = 0; i <= index; i++)
                e = e.next;
        } else {
            for (int i = size; i > index; i--)
                e = e.previous;
        }
        return e;
    }

4.2 增加一个节点的方法

LinkedList还提供了其他的增加方法:

   add(E e):  将指定元素添加到此列表的结尾。

   add(int index, E element):在此列表中指定的位置插入指定的元素。

   addAll(Collection<? extends E> c):添加指定 collection 中的所有元素到此列表的结尾,顺序是指定 collection 的迭代器返回这些元素的顺序。

   addAll(int index, Collection<? extends E> c):将指定 collection 中的所有元素从指定位置开始插入此列表。

   AddFirst(E e): 将指定元素插入此列表的开头。

   addLast(E e): 将指定元素添加到此列表的结尾。
 public boolean add(E e) {
    addBefore(e, header);
        return true;
 }
 private Entry<E> addBefore(E e, Entry<E> entry) {
    Entry<E> newEntry = new Entry<E>(e, entry, entry.previous);
    newEntry.previous.next = newEntry;
    newEntry.next.previous = newEntry;
    size++;
    modCount++;
    return newEntry;
    }

    private E remove(Entry<E> e) {
    if (e == header)
        throw new NoSuchElementException();

        E result = e.element;
    e.previous.next = e.next;
    e.next.previous = e.previous;
        e.next = e.previous = null;
        e.element = null;
    size--;
    modCount++;
        return result;
    }
   该方法调用addBefore方法,然后直接返回true,对于addBefore()而已,它为LinkedList的私有方法。看源码知所有的添加方法都调用了addBefore()方法,只是节点的位置不一样。

4.3删除方法。

remove(Object o):从此列表中移除首次出现的指定元素(如果存在)。该方法的源代码如下:

public boolean remove(Object o) {
        if (o==null) {
            for (Entry<E> e = header.next; e != header; e = e.next) {
                if (e.element==null) {
                    remove(e);
                    return true;
                }
            }
        } else {
            for (Entry<E> e = header.next; e != header; e = e.next) {
                if (o.equals(e.element)) {
                    remove(e);
                    return true;
                }
            }
        }
        return false;
    }

该方法首先会判断移除的元素是否为null,然后迭代这个链表找到该元素节点,最后调用remove(Entry e),remove(Entry e)为私有方法,是LinkedList中所有移除方法的基础方法,如下:

private E remove(Entry<E> e) {
    if (e == header)
        throw new NoSuchElementException();

        E result = e.element;
    e.previous.next = e.next;
    e.next.previous = e.previous;
        e.next = e.previous = null;
        e.element = null;
    size--;
    modCount++;
        return result;
    }

其他的移除方法:

   clear(): 从此列表中移除所有元素。

   remove():获取并移除此列表的头(第一个元素)。

   remove(int index):移除此列表中指定位置处的元素。

   remove(Objec o):从此列表中移除首次出现的指定元素(如果存在)。

   removeFirst():移除并返回此列表的第一个元素。

   removeFirstOccurrence(Object o):从此列表中移除第一次出现的指定元素(从头部到尾部遍历列表时)。

   removeLast():移除并返回此列表的最后一个元素。

   removeLastOccurrence(Object o):从此列表中移除最后一次出现的指定元素(从头部到尾部遍历列表时)。

4.4查找方法。

对于查找方法的源码就没有什么好介绍了,无非就是迭代,比对,然后就是返回当前值。

   get(int index):返回此列表中指定位置处的元素。

   getFirst():返回此列表的第一个元素。

   getLast():返回此列表的最后一个元素。

   indexOf(Object o):返回此列表中首次出现的指定元素的索引,如果此列表中不包含该元素,则返回 -1。

   lastIndexOf(Object o):返回此列表中最后出现的指定元素的索引,如果此列表中不包含该元素,则返回 -1。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值