美文网首页
LinkedList源码解析

LinkedList源码解析

作者: 游牧族人 | 来源:发表于2018-07-05 15:56 被阅读11次

    LinkedList可以作为链表来使用,也可以作为双端队列来使用。
    LinedList中默认属性初始化信息:

    public class LinkedList<E>
        extends AbstractSequentialList<E>
        implements List<E>, Deque<E>, Cloneable, java.io.Serializable{
        /**
         * 链表长度大小
         */
        transient int size = 0;
        /**
         * 链表头结点
         */
        transient Node<E> first;
        /**
         * 链表尾结点
         */
        transient Node<E> last;
    }
    --------------------------------------------------------------------------------
        /**
         * 链表尾结点
         * 1. 结点类中包含上一结点的引用,结点值和下一结点的引用三个属性。
         * 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);
        }
    

    LinkedList的 add 方法:

        /**
         *  向链表头部添加元素,即修改链表头部结点并更新相邻结点的引用
         */
        public void addFirst(E e) {
            linkFirst(e);
        }
        private void linkFirst(E e) {
            final Node<E> f = first;
            final Node<E> newNode = new Node<>(null, e, f);
            first = newNode;
            if (f == null)
                last = newNode;
            else
                f.prev = newNode;
            size++;
            modCount++;
        }
        /**
         * 链表尾部添加结点
         * 其中 add 方法和addLast方法均为向链表尾部添加结点,而且底层都是调用 linkLast 方法。
         * 区别在于两者的返回值不同
         */
        public void addLast(E e) {
            linkLast(e);
        }
        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++;
            modCount++;
        }
    
        /**
         * 指定位置添加结点元素
         * 1. 我们可以发现添加元素的位置是在 index 索引位置结点之前,
         *    方法是找到当前 index 位置下的结点元素然后在他之前添加新的结点元素
         *    并更新前后结点的引用。
         */
        public void add(int index, E element) {
            checkPositionIndex(index);
            if (index == size)
                linkLast(element);
            else
                linkBefore(element, node(index));
        }
        void linkBefore(E e, Node<E> succ) {
            // assert succ != null;
            final Node<E> pred = succ.prev;
            final Node<E> newNode = new Node<>(pred, e, succ);
            succ.prev = newNode;
            if (pred == null)
                first = newNode;
            else
                pred.next = newNode;
            size++;
            modCount++;
        }
    -------------------------------------------------------------------------------------
        addAll 方法
        public boolean addAll(Collection<? extends E> c) {
            return addAll(size, c);
        }
        public boolean addAll(int index, Collection<? extends E> c) {
            checkPositionIndex(index);    // 索引位置检查
    
            Object[] a = c.toArray();
            int numNew = a.length;
            if (numNew == 0)
                return false;
    
            Node<E> pred, succ;
            if (index == size) {
                succ = null;
                pred = last;
            } else {
                succ = node(index);
                pred = succ.prev;
            }
    
            for (Object o : a) {
                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;
        }
    
        private void checkPositionIndex(int index) {
            if (!isPositionIndex(index))
                throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
        }
        private boolean isPositionIndex(int index) {
            return index >= 0 && index <= size;
        }
    

    相关文章

      网友评论

          本文标题:LinkedList源码解析

          本文链接:https://www.haomeiwen.com/subject/khyuuftx.html