02_LinkedList源碼剖析

一乔询、LinkedList基本原理

  1. 優(yōu)點(diǎn):插入數(shù)據(jù)特別的快,不像ArrayList數(shù)組那樣子韵洋,挪動(dòng)大量的元素的竿刁,他是直接在鏈表里加一個(gè)節(jié)點(diǎn)就可以了
  2. 缺點(diǎn)黄锤,不太適合在隨機(jī)的位置,獲取某個(gè)隨機(jī)的位置的元素食拜,比如LinkedList.get(10)鸵熟,這種操作,性能就很低负甸,因?yàn)樗枰闅v這個(gè)鏈表流强,從頭開始遍歷這個(gè)鏈表,直到找到index = 10的這個(gè)元素為止
  3. LinkedList底層是基雙向鏈表呻待,而ArrayList底層基于數(shù)組打月。也就是底層結(jié)構(gòu)不同,才影響著他們的優(yōu)缺點(diǎn)

二带污、使用場景

  1. ArrayList:代表一個(gè)集合僵控,只要?jiǎng)e頻繁的往里面插入和灌入大量的元素就可以了,遍歷鱼冀,或者隨機(jī)查报破,都可以
  2. LinkedList:適合,頻繁的在list中插入和刪除某個(gè)元素,典型的就是用作隊(duì)列

三千绪、插入元素源碼

我們還是從基本的方法作為入口充易,還有一點(diǎn)就是我們一定要清楚,LinkedList主要用作隊(duì)列使用荸型,最后只關(guān)注一下他的核心源碼

代碼片段一盹靴、

  1. 首先要看下,最主要的是Node節(jié)點(diǎn)瑞妇,包含了當(dāng)前元素稿静,上一個(gè)節(jié)點(diǎn)、下一個(gè)節(jié)點(diǎn)
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;
    }
}

代碼片段二辕狰、add方法

  1. addFirst方法其實(shí)和add方法一樣的
/**
* 這里默認(rèn)向鏈表的尾部插入
 * Appends the specified element to the end of this list.
 *
 * <p>This method is equivalent to {@link #addLast}.
 *
 * @param e element to be appended to this list
 * @return {@code true} (as specified by {@link Collection#add})
 */
public boolean add(E e) {
    // 將當(dāng)前元素放入隊(duì)尾
    linkLast(e);
    return true;
}

代碼片段二改备、

/**
 * Links e as last element.
 */
void linkLast(E e) {
    // 定義一個(gè)l元素,指向last尾元素
    final Node<E> l = last;
    // 新增一個(gè)Node蔓倍,他的pre指針指向l悬钳,就是隊(duì)尾的那個(gè)元素,next指向null
    final Node<E> newNode = new Node<>(l, e, null);
    // 讓last指向新增的節(jié)點(diǎn)
    last = newNode;
    if (l == null)
        // 如果l為空偶翅,說明這是一個(gè)新的鏈表默勾,新怎的節(jié)點(diǎn)也是頭結(jié)點(diǎn)
        first = newNode;
    else
        // l.next的意思是原來的隊(duì)尾節(jié)點(diǎn)的next指向當(dāng)前新怎的節(jié)點(diǎn)
        l.next = newNode;
    // 鏈表長度+1
    size++;
    modCount++;
}

代碼片段三、 addFirst方法

/**
 * Inserts the specified element at the beginning of this list.
 *
 * @param e the element to add
 */
public void addFirst(E e) {
    linkFirst(e);
}

/**
 * Links e as first element.
 */
private void linkFirst(E e) {
    // 定義一個(gè)f變量聚谁,指向隊(duì)首
    final Node<E> f = first;
    // 新增一個(gè)新的節(jié)點(diǎn)母剥,pre指針指向Null ,next指向隊(duì)首元素
    final Node<E> newNode = new Node<>(null, e, f);
    // 將first指針指向新增節(jié)點(diǎn)
    first = newNode;
    if (f == null)
        // 如果f為空,說明這是一個(gè)新的鏈表,新怎的節(jié)點(diǎn)也是頭結(jié)點(diǎn)
        last = newNode;
    else
        // y原來首節(jié)點(diǎn)的prev指向當(dāng)前新增節(jié)點(diǎn)
        f.prev = newNode;
    size++;
    modCount++;
}

代碼片段四媳搪、

在指定位置插入元素

/**
 * Inserts the specified element at the specified position in this list.
 * Shifts the element currently at that position (if any) and any
 * subsequent elements to the right (adds one to their indices).
 *
 * @param index index at which the specified element is to be inserted
 * @param element element to be inserted
 * @throws IndexOutOfBoundsException {@inheritDoc}
 */
public void add(int index, E element) {
    // 參數(shù)校驗(yàn)
    checkPositionIndex(index);

    // 如果是index==size铭段,則直接插入尾部
    if (index == size)
        linkLast(element);
    else
        // node方法如下
        linkBefore(element, node(index));
}

/**
 * Returns the (non-null) Node at the specified element index.
 */
Node<E> node(int index) {
    // assert isElementIndex(index);

    // 如果index < size/2,說明index在隊(duì)列的前半部分
    if (index < (size >> 1)) {
        // 拿到第一個(gè)元素,然后從頭開始遍歷秦爆,
        Node<E> x = first;
        //不停的遍歷序愚,直到找到index的位置,然后返回x
        for (int i = 0; i < index; i++)
            x = x.next;
        return x;
    } else {
        // 這里其實(shí)就是從尾部開始遍歷
        Node<E> x = last;
        for (int i = size - 1; i > index; i--)
            x = x.prev;
        return x;
    }
}

/**
 * Inserts element e before non-null Node succ.
 */
void linkBefore(E e, Node<E> succ) {
    // assert succ != null;
    final Node<E> pred = succ.prev;
    //創(chuàng)建一個(gè)新的節(jié)點(diǎn)等限,前一個(gè)節(jié)點(diǎn)是index節(jié)點(diǎn)的前一個(gè)節(jié)點(diǎn)爸吮,next節(jié)點(diǎn)為succ節(jié)點(diǎn)
    // 其實(shí)就是node方法遍歷的時(shí)候找到的那個(gè)index對(duì)應(yīng)的節(jié)點(diǎn)
    final Node<E> newNode = new Node<>(pred, e, succ);
    // 讓原來的節(jié)點(diǎn)的prev指向新創(chuàng)建的節(jié)點(diǎn)
    succ.prev = newNode;
    if (pred == null)
        // pred如果為空的話,說明index對(duì)應(yīng)是頭結(jié)點(diǎn)
        first = newNode;
    else
        // index節(jié)點(diǎn)原來對(duì)應(yīng)的next指向創(chuàng)建的新節(jié)點(diǎn)
        pred.next = newNode;
    size++;
    modCount++;
}

四望门、獲取元素源碼

代碼片段一形娇、getFirst peek

/**
 * Returns the first element in this list.
 *
 * @return the first element in this list
 * @throws NoSuchElementException if this list is empty
 */
//返回第一個(gè)元素,這里的first其實(shí)就是指向了鏈表的第一個(gè)元素
// 如果鏈表為空的話筹误,則拋出異常
public E getFirst() {
    final Node<E> f = first;
    if (f == null)
        throw new NoSuchElementException();
    return f.item;
}

/**
 * Retrieves, but does not remove, the head (first element) of this list.
 *
 * @return the head of this list, or {@code null} if this list is empty
 * @since 1.5
 */
// 和getFirst區(qū)別就是如果鏈表為空的話桐早,返回null
public E peek() {
    final Node<E> f = first;
    return (f == null) ? null : f.item;
}

/**
 * Returns the element at the specified position in this list.
 * 對(duì)于LinkedList而言,讀取某個(gè)元素的時(shí)候厨剪,是通過node方法哄酝,遍歷鏈表,判斷index的位置祷膳,所以隨機(jī)讀取
* 是LinkedList的弱點(diǎn)
 * @param index index of the element to return
 * @return the element at the specified position in this list
 * @throws IndexOutOfBoundsException {@inheritDoc}
 */
public E get(int index) {
    checkElementIndex(index);
    return node(index).item;
}

五陶衅、刪除元素

代碼片段一、

/**
 * Retrieves and removes the head (first element) of this list.
 * 刪除頭部元素
 * @return the head of this list
 * @throws NoSuchElementException if this list is empty
 * @since 1.5
 */
public E remove() {
    return removeFirst();
}



/**
 * Removes and returns the first element from this list.
 *
 * @return the first element from this list
 * @throws NoSuchElementException if this list is empty
 */
public E removeFirst() {
    // 首先直晨。拿到鏈表的第一個(gè)元素
    final Node<E> f = first;
    // 如果隊(duì)頭的元素為null的話搀军,這個(gè)隊(duì)列也是空的
    if (f == null)
        throw new NoSuchElementException();
    // 最后還是走到unlinkFirst,刪除的核心邏輯
    return unlinkFirst(f);
}


/**
 * Removes and returns the last element from this list.
 *
 * @return the last element from this list
 * @throws NoSuchElementException if this list is empty
 */
public E removeLast() {
    final Node<E> l = last;
    if (l == null)
        throw new NoSuchElementException();
    return unlinkLast(l);
}

/**
 * Removes and returns the last element from this list.
 *
 * @return the last element from this list
 * @throws NoSuchElementException if this list is empty
 */
public E removeLast() {
    final Node<E> l = last;
    if (l == null)
        throw new NoSuchElementException();
    return unlinkLast(l);
}

/**
 * Unlinks non-null last node l.
* 這里和unlinkfirst幾乎一個(gè)套路
 */
private E unlinkLast(Node<E> l) {
    // assert l == last && l != null;
    final E element = l.item;
    final Node<E> prev = l.prev;
    l.item = null;
    l.prev = null; // help GC
    last = prev;
    if (prev == null)
        first = null;
    else
        prev.next = null;
    size--;
    modCount++;
    return element;
}

/**
 * Unlinks non-null first node f.
 */
private E unlinkFirst(Node<E> f) {
    // assert f == first && f != null;
    // 1.先拿到隊(duì)頭的元素
    // 2. 然后拿到隊(duì)頭的next元素
    // 3. 隊(duì)頭的元素=null勇皇,
    // 4. 隊(duì)頭的next指針指向null
    // 5.將first指針指向next
    // 6. 通過2罩句、3、4敛摘、5步驟的止,其實(shí)就是將隊(duì)頭的元素釋放掉了
    final E element = f.item;
    final Node<E> next = f.next;
    f.item = null;
    f.next = null; // help GC
    first = next;
    if (next == null)
        last = null;
    else
        next.prev = null;
    size--;
    modCount++;
    return element;
}
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市着撩,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌匾委,老刑警劉巖拖叙,帶你破解...
    沈念sama閱讀 211,265評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異赂乐,居然都是意外死亡薯鳍,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,078評(píng)論 2 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來挖滤,“玉大人崩溪,你說我怎么就攤上這事≌端桑” “怎么了伶唯?”我有些...
    開封第一講書人閱讀 156,852評(píng)論 0 347
  • 文/不壞的土叔 我叫張陵,是天一觀的道長惧盹。 經(jīng)常有香客問我乳幸,道長,這世上最難降的妖魔是什么钧椰? 我笑而不...
    開封第一講書人閱讀 56,408評(píng)論 1 283
  • 正文 為了忘掉前任粹断,我火速辦了婚禮,結(jié)果婚禮上嫡霞,老公的妹妹穿的比我還像新娘瓶埋。我一直安慰自己,他們只是感情好诊沪,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,445評(píng)論 5 384
  • 文/花漫 我一把揭開白布养筒。 她就那樣靜靜地躺著,像睡著了一般娄徊。 火紅的嫁衣襯著肌膚如雪闽颇。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,772評(píng)論 1 290
  • 那天寄锐,我揣著相機(jī)與錄音兵多,去河邊找鬼。 笑死橄仆,一個(gè)胖子當(dāng)著我的面吹牛剩膘,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播盆顾,決...
    沈念sama閱讀 38,921評(píng)論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼怠褐,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了您宪?” 一聲冷哼從身側(cè)響起奈懒,我...
    開封第一講書人閱讀 37,688評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎宪巨,沒想到半個(gè)月后磷杏,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,130評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡捏卓,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,467評(píng)論 2 325
  • 正文 我和宋清朗相戀三年极祸,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,617評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡遥金,死狀恐怖浴捆,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情稿械,我是刑警寧澤选泻,帶...
    沈念sama閱讀 34,276評(píng)論 4 329
  • 正文 年R本政府宣布,位于F島的核電站溜哮,受9級(jí)特大地震影響滔金,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜茂嗓,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,882評(píng)論 3 312
  • 文/蒙蒙 一餐茵、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧述吸,春花似錦忿族、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,740評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至入撒,卻和暖如春隆豹,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背茅逮。 一陣腳步聲響...
    開封第一講書人閱讀 31,967評(píng)論 1 265
  • 我被黑心中介騙來泰國打工璃赡, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人献雅。 一個(gè)月前我還...
    沈念sama閱讀 46,315評(píng)論 2 360
  • 正文 我出身青樓碉考,卻偏偏與公主長得像,于是被迫代替她去往敵國和親挺身。 傳聞我的和親對(duì)象是個(gè)殘疾皇子侯谁,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,486評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容