国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

LinkedList源碼解析(二)

Ashin / 1999人閱讀

摘要:返回結合中存儲的節點數量向集合末尾添加一個元素移除一個元素如果是從第一個節點指針指向的節點開始循環比較節點的值,的內存地址取消節點操作成功如果是不是從第一個節點指針指向的節點開始循環調用的方法和節點的值作比較取消節點操作成功操作失敗向集合末

size()返回結合中存儲的節點數量

public int size() {
        return size;
    }

add(E e)向集合末尾添加一個元素

 public boolean add(E e) {
        linkLast(e);
        return true;
    }

remove(Object o)移除一個元素

public boolean remove(Object o) {
        if (o == null) {//如果o是null
            for (Node x = first; x != null; x = x.next) {//從第一個節點指針指向的節點開始循環
                if (x.item == null) {//比較節點的值,的內存地址
                    unlink(x);//取消節點
                    return true;//操作成功
                }
            }
        } else {//如果o是不是null
            for (Node x = first; x != null; x = x.next) {//從第一個節點指針指向的節點開始循環
                if (o.equals(x.item)) {//調用o的equals方法和節點的值作比較
                    unlink(x);//取消節點
                    return true;//操作成功
                }
            }
        }
        return false;//操作失敗
    }

addAll(Collection c)向集合末尾加入集合c

public boolean addAll(Collection c) {
        return addAll(size, c);
    }

clear()清空集合

 public void clear() {
        // Clearing all of the links between nodes is "unnecessary", but:
        // - helps a generational GC if the discarded nodes inhabit
        //   more than one generation
        // - is sure to free memory even if there is a reachable Iterator
        for (Node x = first; x != null; ) {//從first指針指向的節點開始循環
            Node next = x.next;//獲取x的next
            x.item = null;//x的值置空
            x.next = null;//x的next置空
            x.prev = null;//x的prev置空
            x = next;//x賦值為next下一次循環使用
        }
        first = last = null;//第一個節點指針和最后一個節點的指針置空
        size = 0;//數據長度0
        modCount++;//操作數不清空
    }

get(int index)獲取index索引節點數據

public E get(int index) {
        checkElementIndex(index);
        return node(index).item;
    }

set(int index, E element)設置index索引處的節點位數為element

public E set(int index, E element) {
        checkElementIndex(index);//index在范圍內
        Node x = node(index);//獲取索引處的節點
        E oldVal = x.item;//獲取節點舊的值
        x.item = element;//給節點的值賦值新值
        return oldVal;//返回舊的值
    }

add(int index, E element)根據索引插入數據

 public void add(int index, E element) {
        checkPositionIndex(index);//index在范圍內

        if (index == size)/、如果索引位index等于數據長度
            linkLast(element);//尾插入
        else
            linkBefore(element, node(index));//否則插入在index索引對應節點之前
    }

remove(int index)移除索引index處的數據

 public E remove(int index) {
        checkElementIndex(index);//index在范圍內
        return unlink(node(index));
    }

isElementIndex(int index)判斷參數是否是現有元素的索引

  private boolean isElementIndex(int index) {
        return index >= 0 && index < size;
    }

isPositionIndex(int index)判斷參數是否是現有元素的索引(迭代器或添加操作)

  private boolean isPositionIndex(int index) {
        return index >= 0 && index < size;
    }

構造一個IndexOutOfBoundsException詳細消息

 private String outOfBoundsMsg(int index) {
        return "Index: "+index+", Size: "+size;
    }

    private void checkElementIndex(int index) {
        if (!isElementIndex(index))
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
    }

    private void checkPositionIndex(int index) {
        if (!isPositionIndex(index))
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
    }

lastIndexOf(Object o)返回指定元素最后一次出現的索引

 public int lastIndexOf(Object o) {
        int index = size;//初始下標賦值
        if (o == null) {//o為null
            for (Node x = last; x != null; x = x.prev) {//last指針指向的節點開始向前循環
                index--;
                if (x.item == null)//節點的值作內存比較
                    return index;//返回下標
            }
        } else {//o不為null
            for (Node x = last; x != null; x = x.prev) {//last指針指向的節點開始向前循環
                index--;
                if (o.equals(x.item))//調用o的equals方法和節點的值比較
                    return index;
            }
        }
        return -1;
    }

peek()索但不刪除此列表的頭部(null返回null)

 public E peek() {
        final Node f = first;
        return (f == null) ? null : f.item;//如果是null的話不返回對象,返回null
    }

element()檢索但不刪除此列表的頭部(null會拋出異常)

public E element() {
        return getFirst();
    }

getFirst()返回此列表中的第一個元素(null會拋出異常)

public E getFirst() {
        final Node f = first;
        if (f == null)
            throw new NoSuchElementException();
        return f.item;
    }

poll()檢索并刪除此列表的頭部(null返回null)

 public E poll() {
        final Node f = first;
        return (f == null) ? null : unlinkFirst(f);//不為null時候,刪除并返回第一個節點
    }

remove()檢索并刪除此列表的頭部

  public E remove() {
        return removeFirst();
    }

offer(E e)將指定的元素添加為此列表的尾部

public boolean offer(E e) {
        return add(e);
    }

offerFirst(E e)在指定列表第一個節點前面插入e

 public boolean offerFirst(E e) {
        addFirst(e);
        return true;
    }

offerLast(E e)在指定列表最后一個節點后面插入e

  public boolean offerLast(E e) {
        addLast(e);
        return true;
    }

peekFirst()檢索但不刪除此列表的第一個節點(null返回null)

 public E peekFirst() {
        final Node f = first;
        return (f == null) ? null : f.item;
     }

peekFirst()檢索但不刪除此列表的最后一個節點(null返回null)

 public E peekLast() {
        final Node l = last;
        return (l == null) ? null : l.item;
    }

pollFirst()檢索并刪除此列表的第一個節點(null返回null)

public E pollFirst() {
        final Node f = first;
        return (f == null) ? null : unlinkFirst(f);
    }

pollLast()檢索并刪除此列表的第最后一個節點(null返回null)

 public E pollLast() {
        final Node l = last;
        return (l == null) ? null : unlinkLast(l);
    }

push(E e)將元素插入到第一個節點簽名

public void push(E e) {
        addFirst(e);
    }

pop()移除第一個節點

  public E pop() {
        return removeFirst();
    }

removeFirstOccurrence(Object o)刪除此中第一次出現的指定元素

public boolean removeFirstOccurrence(Object o) {
        return remove(o);
    }

removeLastOccurrence(Object o)刪除此中最后一次出現的指定元素

//和lastIndexOf類似,找到后直接調用unlink
 public boolean removeLastOccurrence(Object o) {
        if (o == null) {
            for (Node x = last; x != null; x = x.prev) {
                if (x.item == null) {
                    unlink(x);
                    return true;
                }
            }
        } else {
            for (Node x = last; x != null; x = x.prev) {
                if (o.equals(x.item)) {
                    unlink(x);
                    return true;
                }
            }
        }
        return false;
    }

ListIterator listIterator(int index)返回集合迭代器

 public ListIterator listIterator(int index) {
        checkPositionIndex(index);
        return new ListItr(index);
    }
迭代器類ListItr
  private class ListItr implements ListIterator {
        private Node lastReturned;//最后返回的節點
        private Node next;//下一個節點
        private int nextIndex;//下一個節點的索引
        private int expectedModCount = modCount;

        ListItr(int index) {
            // assert isPositionIndex(index);
            next = (index == size) ? null : node(index);//構造下一個節點的索引
            nextIndex = index;
        }

        public boolean hasNext() {
            return nextIndex < size;//判斷是否有下一個節點
        }

        public E next() {
            checkForComodification();//線程安全
            if (!hasNext())
                throw new NoSuchElementException();//迭代器到尾部

            lastReturned = next;//迭代器越過next
            next = next.next;//next賦值為next的下一個節點
            nextIndex++;//下一個節點的索引+1
            return lastReturned.item;//返回迭代器越過節點的值
        }

        public boolean hasPrevious() {
            return nextIndex > 0;//是否有前一個節點
        }

        public E previous() {
            checkForComodification();//線程安全
            if (!hasPrevious())
                throw new NoSuchElementException();//迭代器到達頭部

            lastReturned = next = (next == null) ? last : next.prev;//如果是空返回last指針指向的節點(不理解)
            nextIndex--;//下一個節點索引自減
            return lastReturned.item;//返回迭代器越過節點的值
        }

        public int nextIndex() {
            return nextIndex;//返回下一個索引
        }

        public int previousIndex() {
            return nextIndex - 1;//返回上一個索引
        }

        public void remove() {
            checkForComodification();
            if (lastReturned == null)//迭代器沒有越過任何元素
                throw new IllegalStateException();

            Node lastNext = lastReturned.next;//獲取迭代器越過節點的下一個節點
            unlink(lastReturned);//移除越過的元素
            if (next == lastReturned)//不理解為什么會進去
                next = lastNext;
            else
                nextIndex--;//下一個節點索引自減
            lastReturned = null;
            expectedModCount++;
        }

        public void set(E e) {
            if (lastReturned == null)//迭代器沒有越過任何元素
                throw new IllegalStateException();
            checkForComodification();//線程安全
            lastReturned.item = e;//迭代器越過節點的值
        }

        public void add(E e) {
            checkForComodification();//線程安全
            lastReturned = null;
            if (next == null)//尾巴插入
                linkLast(e);
            else
                linkBefore(e, next);//next節點前插入
            nextIndex++;//下一個節點的索引加1
            expectedModCount++;
        }

        public void forEachRemaining(Consumer action) {
            Objects.requireNonNull(action);
            while (modCount == expectedModCount && nextIndex < size) {//下一個節點的索引小于節點數
                action.accept(next.item);//運行accept方法
                lastReturned = next;
                next = next.next;
                nextIndex++;
            }
            checkForComodification();//線程安全
        }

        final void checkForComodification() {
            if (modCount != expectedModCount)
                throw new ConcurrentModificationException();
        }
    }

descendingIterator()適配器通過ListItr.previous提供降序迭代器

 public Iterator descendingIterator() {
        return new DescendingIterator();
    }
降序迭代器DescendingIterato(調用的就是ListItr,反著調用)
 private class DescendingIterator implements Iterator {
        private final ListItr itr = new ListItr(size());
        public boolean hasNext() {
            return itr.hasPrevious();
        }
        public E next() {
            return itr.previous();
        }
        public void remove() {
            itr.remove();
        }
    }

superClone()超類復制

@SuppressWarnings("unchecked")
private LinkedList superClone() {
        try {
            return (LinkedList) super.clone();
        } catch (CloneNotSupportedException e) {
            throw new InternalError(e);
        }
    }

clone()復制集合對象

 public Object clone() {
        LinkedList clone = superClone();

        // Put clone into "virgin" state
        clone.first = clone.last = null;//第一個節點和最后一個節點置空
        clone.size = 0;//數據數置0
        clone.modCount = 0;//操作數置0

        // Initialize clone with our elements
        for (Node x = first; x != null; x = x.next)//從first節點開始循環初始化clone對象
            clone.add(x.item);

        return clone;
    }

toArray()返回集合元素組成的數組

  public Object[] toArray() {
        Object[] result = new Object[size];
        int i = 0;
        for (Node x = first; x != null; x = x.next)
            result[i++] = x.item;
        return result;
    }

toArray(T[] a)返回集合元素組成的數組(傳入數組的類型)

 @SuppressWarnings("unchecked")
    public  T[] toArray(T[] a) {
        if (a.length < size)
            a = (T[])java.lang.reflect.Array.newInstance(
                                a.getClass().getComponentType(), size);//創建數組
        int i = 0;
        Object[] result = a;
        for (Node x = first; x != null; x = x.next)
            result[i++] = x.item;

        if (a.length > size)
            a[size] = null;

        return a;
    }

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/74936.html

相關文章

  • LinkedList 基本示例及源碼解析

    摘要:對于不可修改的列表來說,程序員需要實現列表迭代器的和方法介紹這個接口也是繼承類層次的核心接口,以求最大限度的減少實現此接口的工作量,由順序訪問數據存儲例如鏈接鏈表支持。 一、JavaDoc 簡介 LinkedList雙向鏈表,實現了List的 雙向隊列接口,實現了所有list可選擇性操作,允許存儲任何元素(包括null值) 所有的操作都可以表現為雙向性的,遍歷的時候會從首部到尾部進行...

    senntyou 評論0 收藏0
  • List集合就這么簡單【源碼剖析】

    摘要:線程不安全底層數據結構是鏈表。的默認初始化容量是,每次擴容時候增加原先容量的一半,也就是變為原來的倍刪除元素時不會減少容量,若希望減少容量則調用它不是線程安全的。 前言 聲明,本文用得是jdk1.8 前一篇已經講了Collection的總覽:Collection總覽,介紹了一些基礎知識。 現在這篇主要講List集合的三個子類: ArrayList 底層數據結構是數組。線程不安全 ...

    cpupro 評論0 收藏0
  • LinkedList源碼解析

    摘要:我們來看相關源碼我們看到封裝的和操作其實就是對頭結點的操作。迭代器通過指針,能指向下一個節點,無需做額外的遍歷,速度非???。不同的遍歷性能差距極大,推薦使用迭代器進行遍歷。LinkedList類介紹 上一篇文章我們介紹了JDK中ArrayList的實現,ArrayList底層結構是一個Object[]數組,通過拷貝,復制等一系列封裝的操作,將數組封裝為一個幾乎是無限的容器。今天我們來介紹JD...

    roundstones 評論0 收藏0
  • Java集合之LinkedList源碼解析

    摘要:快速失敗在用迭代器遍歷一個集合對象時,如果遍歷過程中對集合對象的內容進行了修改增加刪除修改,則會拋出。原理由于迭代時是對原集合的拷貝進行遍歷,所以在遍歷過程中對原集合所作的修改并不能被迭代器檢測到,所以不會觸發。 原文地址 LinkedList 在Java.util包下 繼承自AbstractSequentialList 實現 List 接口,能對它進行隊列操作。 實現 Deque ...

    DC_er 評論0 收藏0
  • java源碼

    摘要:集合源碼解析回歸基礎,集合源碼解析系列,持續更新和源碼分析與是兩個常用的操作字符串的類。這里我們從源碼看下不同狀態都是怎么處理的。 Java 集合深入理解:ArrayList 回歸基礎,Java 集合深入理解系列,持續更新~ JVM 源碼分析之 System.currentTimeMillis 及 nanoTime 原理詳解 JVM 源碼分析之 System.currentTimeMi...

    Freeman 評論0 收藏0

發表評論

0條評論

Ashin

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<