jdk/src/share/classes/java/util/LinkedList.java
author lana
Tue, 04 Jan 2011 17:05:38 -0800
changeset 7816 55a18147b4bf
parent 7803 56bc97d69d93
parent 7668 d4a77089c587
child 7976 f273c0d04215
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
7668
d4a77089c587 6962318: Update copyright year
ohair
parents: 6124
diff changeset
     2
 * Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4184
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4184
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4184
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4184
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4184
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
/**
6124
ba148d56813d 6717780: (coll spec) LinkedList api documentation provides the wrong method name
martin
parents: 5506
diff changeset
    29
 * Linked list implementation of the {@link List} and {@link Deque} interfaces.
ba148d56813d 6717780: (coll spec) LinkedList api documentation provides the wrong method name
martin
parents: 5506
diff changeset
    30
 * Implements all optional operations, and permits all elements (including
ba148d56813d 6717780: (coll spec) LinkedList api documentation provides the wrong method name
martin
parents: 5506
diff changeset
    31
 * {@code null}).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    33
 * <p>All of the operations perform as could be expected for a doubly-linked
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * list.  Operations that index into the list will traverse the list from
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    35
 * the beginning or the end, whichever is closer to the specified index.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <p><strong>Note that this implementation is not synchronized.</strong>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * If multiple threads access a linked list concurrently, and at least
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * one of the threads modifies the list structurally, it <i>must</i> be
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * synchronized externally.  (A structural modification is any operation
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * that adds or deletes one or more elements; merely setting the value of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * an element is not a structural modification.)  This is typically
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * accomplished by synchronizing on some object that naturally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * encapsulates the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * If no such object exists, the list should be "wrapped" using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * {@link Collections#synchronizedList Collections.synchronizedList}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * method.  This is best done at creation time, to prevent accidental
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * unsynchronized access to the list:<pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 *   List list = Collections.synchronizedList(new LinkedList(...));</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    52
 * <p>The iterators returned by this class's {@code iterator} and
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    53
 * {@code listIterator} methods are <i>fail-fast</i>: if the list is
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * structurally modified at any time after the iterator is created, in
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    55
 * any way except through the Iterator's own {@code remove} or
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    56
 * {@code add} methods, the iterator will throw a {@link
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * ConcurrentModificationException}.  Thus, in the face of concurrent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * modification, the iterator fails quickly and cleanly, rather than
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * risking arbitrary, non-deterministic behavior at an undetermined
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * as it is, generally speaking, impossible to make any hard guarantees in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * presence of unsynchronized concurrent modification.  Fail-fast iterators
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    65
 * throw {@code ConcurrentModificationException} on a best-effort basis.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * Therefore, it would be wrong to write a program that depended on this
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * exception for its correctness:   <i>the fail-fast behavior of iterators
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * should be used only to detect bugs.</i>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 * <p>This class is a member of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * @author  Josh Bloch
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * @see     List
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * @see     ArrayList
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 * @since 1.2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * @param <E> the type of elements held in this collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
public class LinkedList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    extends AbstractSequentialList<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    implements List<E>, Deque<E>, Cloneable, java.io.Serializable
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
{
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    85
    transient int size = 0;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    86
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    87
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    88
     * Pointer to first node.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    89
     * Invariant: (first == null && last == null) ||
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    90
     *            (first.prev == null && first.item != null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    91
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    92
    transient Node<E> first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    93
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    94
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    95
     * Pointer to last node.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    96
     * Invariant: (first == null && last == null) ||
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    97
     *            (last.next == null && last.item != null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    98
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
    99
    transient Node<E> last;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * Constructs an empty list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    public LinkedList() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Constructs a list containing the elements of the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * collection, in the order they are returned by the collection's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @param  c the collection whose elements are to be placed into this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    public LinkedList(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        this();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        addAll(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   121
     * Links e as first element.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   122
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   123
    private void linkFirst(E e) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   124
        final Node<E> f = first;
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 6124
diff changeset
   125
        final Node<E> newNode = new Node<>(null, e, f);
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   126
        first = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   127
        if (f == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   128
            last = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   129
        else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   130
            f.prev = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   131
        size++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   132
        modCount++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   133
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   134
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   135
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   136
     * Links e as last element.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   137
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   138
    void linkLast(E e) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   139
        final Node<E> l = last;
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 6124
diff changeset
   140
        final Node<E> newNode = new Node<>(l, e, null);
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   141
        last = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   142
        if (l == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   143
            first = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   144
        else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   145
            l.next = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   146
        size++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   147
        modCount++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   148
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   149
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   150
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   151
     * Inserts element e before non-null Node succ.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   152
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   153
    void linkBefore(E e, Node<E> succ) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   154
        // assert succ != null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   155
        final Node<E> pred = succ.prev;
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 6124
diff changeset
   156
        final Node<E> newNode = new Node<>(pred, e, succ);
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   157
        succ.prev = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   158
        if (pred == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   159
            first = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   160
        else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   161
            pred.next = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   162
        size++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   163
        modCount++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   164
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   165
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   166
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   167
     * Unlinks non-null first node f.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   168
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   169
    private E unlinkFirst(Node<E> f) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   170
        // assert f == first && f != null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   171
        final E element = f.item;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   172
        final Node<E> next = f.next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   173
        f.item = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   174
        f.next = null; // help GC
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   175
        first = next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   176
        if (next == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   177
            last = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   178
        else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   179
            next.prev = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   180
        size--;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   181
        modCount++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   182
        return element;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   183
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   185
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   186
     * Unlinks non-null last node l.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   187
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   188
    private E unlinkLast(Node<E> l) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   189
        // assert l == last && l != null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   190
        final E element = l.item;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   191
        final Node<E> prev = l.prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   192
        l.item = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   193
        l.prev = null; // help GC
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   194
        last = prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   195
        if (prev == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   196
            first = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   197
        else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   198
            prev.next = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   199
        size--;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   200
        modCount++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   201
        return element;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   202
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   203
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   204
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   205
     * Unlinks non-null node x.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   206
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   207
    E unlink(Node<E> x) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   208
        // assert x != null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   209
        final E element = x.item;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   210
        final Node<E> next = x.next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   211
        final Node<E> prev = x.prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   212
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   213
        if (prev == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   214
            first = next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   215
        } else {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   216
            prev.next = next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   217
            x.prev = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   218
        }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   219
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   220
        if (next == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   221
            last = prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   222
        } else {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   223
            next.prev = prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   224
            x.next = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   225
        }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   226
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   227
        x.item = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   228
        size--;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   229
        modCount++;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   230
        return element;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   231
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   232
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   233
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * Returns the first element in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @return the first element in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    public E getFirst() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   240
        final Node<E> f = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   241
        if (f == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            throw new NoSuchElementException();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   243
        return f.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * Returns the last element in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @return the last element in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    public E getLast()  {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   253
        final Node<E> l = last;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   254
        if (l == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            throw new NoSuchElementException();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   256
        return l.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * Removes and returns the first element from this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * @return the first element from this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    public E removeFirst() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   266
        final Node<E> f = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   267
        if (f == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   268
            throw new NoSuchElementException();
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   269
        return unlinkFirst(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
     * Removes and returns the last element from this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
     * @return the last element from this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    public E removeLast() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   279
        final Node<E> l = last;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   280
        if (l == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   281
            throw new NoSuchElementException();
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   282
        return unlinkLast(l);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
     * Inserts the specified element at the beginning of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * @param e the element to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
    public void addFirst(E e) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   291
        linkFirst(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * Appends the specified element to the end of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     * <p>This method is equivalent to {@link #add}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
     * @param e the element to add
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    public void addLast(E e) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   302
        linkLast(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    /**
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   306
     * Returns {@code true} if this list contains the specified element.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   307
     * More formally, returns {@code true} if and only if this list contains
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   308
     * at least one element {@code e} such that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * @param o element whose presence in this list is to be tested
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   312
     * @return {@code true} if this list contains the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public boolean contains(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        return indexOf(o) != -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Returns the number of elements in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * @return the number of elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * Appends the specified element to the end of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * <p>This method is equivalent to {@link #addLast}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     * @param e element to be appended to this list
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   333
     * @return {@code true} (as specified by {@link Collection#add})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
    public boolean add(E e) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   336
        linkLast(e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
     * Removes the first occurrence of the specified element from this list,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
     * if it is present.  If this list does not contain the element, it is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * unchanged.  More formally, removes the element with the lowest index
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   344
     * {@code i} such that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   346
     * (if such an element exists).  Returns {@code true} if this list
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * contained the specified element (or equivalently, if this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     * changed as a result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     * @param o element to be removed from this list, if present
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   351
     * @return {@code true} if this list contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
    public boolean remove(Object o) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   354
        if (o == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   355
            for (Node<E> x = first; x != null; x = x.next) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   356
                if (x.item == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   357
                    unlink(x);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        } else {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   362
            for (Node<E> x = first; x != null; x = x.next) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   363
                if (o.equals(x.item)) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   364
                    unlink(x);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * Appends all of the elements in the specified collection to the end of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * this list, in the order that they are returned by the specified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     * collection's iterator.  The behavior of this operation is undefined if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
     * the specified collection is modified while the operation is in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
     * progress.  (Note that this will occur if the specified collection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
     * this list, and it's nonempty.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * @param c collection containing elements to be added to this list
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   381
     * @return {@code true} if this list changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public boolean addAll(Collection<? extends E> c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
        return addAll(size, c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * Inserts all of the elements in the specified collection into this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     * list, starting at the specified position.  Shifts the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * currently at that position (if any) and any subsequent elements to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * the right (increases their indices).  The new elements will appear
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     * in the list in the order that they are returned by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * specified collection's iterator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @param index index at which to insert the first element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     *              from the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * @param c collection containing elements to be added to this list
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   399
     * @return {@code true} if this list changed as a result of the call
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * @throws NullPointerException if the specified collection is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    public boolean addAll(int index, Collection<? extends E> c) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   404
        checkPositionIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   405
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
        Object[] a = c.toArray();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        int numNew = a.length;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   408
        if (numNew == 0)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
            return false;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   410
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   411
        Node<E> pred, succ;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   412
        if (index == size) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   413
            succ = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   414
            pred = last;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   415
        } else {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   416
            succ = node(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   417
            pred = succ.prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   418
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   420
        for (Object o : a) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   421
            @SuppressWarnings("unchecked") E e = (E) o;
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 6124
diff changeset
   422
            Node<E> newNode = new Node<>(pred, e, null);
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   423
            if (pred == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   424
                first = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   425
            else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   426
                pred.next = newNode;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   427
            pred = newNode;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
        }
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   429
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   430
        if (succ == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   431
            last = pred;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   432
        } else {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   433
            pred.next = succ;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   434
            succ.prev = pred;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   435
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
        size += numNew;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   438
        modCount++;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     * Removes all of the elements from this list.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   444
     * The list will be empty after this call returns.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    public void clear() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   447
        // Clearing all of the links between nodes is "unnecessary", but:
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   448
        // - helps a generational GC if the discarded nodes inhabit
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   449
        //   more than one generation
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   450
        // - is sure to free memory even if there is a reachable Iterator
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   451
        for (Node<E> x = first; x != null; ) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   452
            Node<E> next = x.next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   453
            x.item = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   454
            x.next = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   455
            x.prev = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   456
            x = next;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        }
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   458
        first = last = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
    // Positional Access Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     * Returns the element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
     * @param index index of the element to return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
     * @return the element at the specified position in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    public E get(int index) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   474
        checkElementIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   475
        return node(index).item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
     * Replaces the element at the specified position in this list with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
     * specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
     * @param index index of the element to replace
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
     * @param element element to be stored at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    public E set(int index, E element) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   488
        checkElementIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   489
        Node<E> x = node(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   490
        E oldVal = x.item;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   491
        x.item = element;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        return oldVal;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
     * Inserts the specified element at the specified position in this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
     * Shifts the element currently at that position (if any) and any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
     * subsequent elements to the right (adds one to their indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * @param index index at which the specified element is to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * @param element element to be inserted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    public void add(int index, E element) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   505
        checkPositionIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   506
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   507
        if (index == size)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   508
            linkLast(element);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   509
        else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   510
            linkBefore(element, node(index));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * Removes the element at the specified position in this list.  Shifts any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     * subsequent elements to the left (subtracts one from their indices).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
     * Returns the element that was removed from the list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
     * @param index the index of the element to be removed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * @return the element previously at the specified position
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    public E remove(int index) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   523
        checkElementIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   524
        return unlink(node(index));
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   525
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   526
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   527
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   528
     * Tells if the argument is the index of an existing element.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   529
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   530
    private boolean isElementIndex(int index) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   531
        return index >= 0 && index < size;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   532
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   533
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   534
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   535
     * Tells if the argument is the index of a valid position for an
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   536
     * iterator or an add operation.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   537
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   538
    private boolean isPositionIndex(int index) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   539
        return index >= 0 && index <= size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    /**
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   543
     * Constructs an IndexOutOfBoundsException detail message.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   544
     * Of the many possible refactorings of the error handling code,
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   545
     * this "outlining" performs best with both server and client VMs.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
     */
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   547
    private String outOfBoundsMsg(int index) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   548
        return "Index: "+index+", Size: "+size;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   549
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   550
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   551
    private void checkElementIndex(int index) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   552
        if (!isElementIndex(index))
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   553
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   554
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   555
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   556
    private void checkPositionIndex(int index) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   557
        if (!isPositionIndex(index))
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   558
            throw new IndexOutOfBoundsException(outOfBoundsMsg(index));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   561
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   562
     * Returns the (non-null) Node at the specified element index.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   563
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   564
    Node<E> node(int index) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   565
        // assert isElementIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   566
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   567
        if (index < (size >> 1)) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   568
            Node<E> x = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   569
            for (int i = 0; i < index; i++)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   570
                x = x.next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   571
            return x;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   572
        } else {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   573
            Node<E> x = last;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   574
            for (int i = size - 1; i > index; i--)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   575
                x = x.prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   576
            return x;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   577
        }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   578
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    // Search Operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
     * Returns the index of the first occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
     * in this list, or -1 if this list does not contain the element.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   585
     * More formally, returns the lowest index {@code i} such that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
     * @param o element to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
     * @return the index of the first occurrence of the specified element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
     *         this list, or -1 if this list does not contain the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
    public int indexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
        int index = 0;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   595
        if (o == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   596
            for (Node<E> x = first; x != null; x = x.next) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   597
                if (x.item == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
                    return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
                index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
        } else {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   602
            for (Node<E> x = first; x != null; x = x.next) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   603
                if (o.equals(x.item))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
                    return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
                index++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
     * Returns the index of the last occurrence of the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
     * in this list, or -1 if this list does not contain the element.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   614
     * More formally, returns the highest index {@code i} such that
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
     * or -1 if there is no such index.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
     * @param o element to search for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
     * @return the index of the last occurrence of the specified element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
     *         this list, or -1 if this list does not contain the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    public int lastIndexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        int index = size;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   624
        if (o == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   625
            for (Node<E> x = last; x != null; x = x.prev) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
                index--;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   627
                if (x.item == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
                    return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        } else {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   631
            for (Node<E> x = last; x != null; x = x.prev) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
                index--;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   633
                if (o.equals(x.item))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
                    return index;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    // Queue operations.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
     * Retrieves, but does not remove, the head (first element) of this list.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   644
     *
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   645
     * @return the head of this list, or {@code null} if this list is empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    public E peek() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   649
        final Node<E> f = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   650
        return (f == null) ? null : f.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
     * Retrieves, but does not remove, the head (first element) of this list.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   655
     *
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
     * @return the head of this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
    public E element() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        return getFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    /**
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   665
     * Retrieves and removes the head (first element) of this list.
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   666
     *
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   667
     * @return the head of this list, or {@code null} if this list is empty
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    public E poll() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   671
        final Node<E> f = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   672
        return (f == null) ? null : unlinkFirst(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * Retrieves and removes the head (first element) of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
     * @return the head of this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    public E remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        return removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
     * Adds the specified element as the tail (last element) of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
     * @param e the element to add
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   690
     * @return {@code true} (as specified by {@link Queue#offer})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
     * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
    public boolean offer(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
        return add(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    // Deque operations
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
     * Inserts the specified element at the front of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
     * @param e the element to insert
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   702
     * @return {@code true} (as specified by {@link Deque#offerFirst})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
    public boolean offerFirst(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        addFirst(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     * Inserts the specified element at the end of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
     * @param e the element to insert
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   714
     * @return {@code true} (as specified by {@link Deque#offerLast})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    public boolean offerLast(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        addLast(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * Retrieves, but does not remove, the first element of this list,
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   724
     * or returns {@code null} if this list is empty.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   726
     * @return the first element of this list, or {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
     *         if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    public E peekFirst() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   731
        final Node<E> f = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   732
        return (f == null) ? null : f.item;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   733
     }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
     * Retrieves, but does not remove, the last element of this list,
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   737
     * or returns {@code null} if this list is empty.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
     *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   739
     * @return the last element of this list, or {@code null}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     *         if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    public E peekLast() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   744
        final Node<E> l = last;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   745
        return (l == null) ? null : l.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * Retrieves and removes the first element of this list,
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   750
     * or returns {@code null} if this list is empty.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
     *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   752
     * @return the first element of this list, or {@code null} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     *     this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
    public E pollFirst() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   757
        final Node<E> f = first;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   758
        return (f == null) ? null : unlinkFirst(f);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
     * Retrieves and removes the last element of this list,
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   763
     * or returns {@code null} if this list is empty.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
     *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   765
     * @return the last element of this list, or {@code null} if
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     *     this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    public E pollLast() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   770
        final Node<E> l = last;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   771
        return (l == null) ? null : unlinkLast(l);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
     * Pushes an element onto the stack represented by this list.  In other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * words, inserts the element at the front of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     * <p>This method is equivalent to {@link #addFirst}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
     * @param e the element to push
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    public void push(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        addFirst(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
     * Pops an element from the stack represented by this list.  In other
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
     * words, removes and returns the first element of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
     * <p>This method is equivalent to {@link #removeFirst()}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * @return the element at the front of this list (which is the top
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     *         of the stack represented by this list)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * @throws NoSuchElementException if this list is empty
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    public E pop() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        return removeFirst();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     * Removes the first occurrence of the specified element in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * list (when traversing the list from head to tail).  If the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * does not contain the element, it is unchanged.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     * @param o element to be removed from this list, if present
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   808
     * @return {@code true} if the list contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    public boolean removeFirstOccurrence(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        return remove(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
     * Removes the last occurrence of the specified element in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
     * list (when traversing the list from head to tail).  If the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
     * does not contain the element, it is unchanged.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
     * @param o element to be removed from this list, if present
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   821
     * @return {@code true} if the list contained the specified element
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
    public boolean removeLastOccurrence(Object o) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   825
        if (o == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   826
            for (Node<E> x = last; x != null; x = x.prev) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   827
                if (x.item == null) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   828
                    unlink(x);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
        } else {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   833
            for (Node<E> x = last; x != null; x = x.prev) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   834
                if (o.equals(x.item)) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   835
                    unlink(x);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
                    return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
     * Returns a list-iterator of the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
     * sequence), starting at the specified position in the list.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   846
     * Obeys the general contract of {@code List.listIterator(int)}.<p>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
     * The list-iterator is <i>fail-fast</i>: if the list is structurally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
     * modified at any time after the Iterator is created, in any way except
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   850
     * through the list-iterator's own {@code remove} or {@code add}
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
     * methods, the list-iterator will throw a
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   852
     * {@code ConcurrentModificationException}.  Thus, in the face of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
     * concurrent modification, the iterator fails quickly and cleanly, rather
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
     * than risking arbitrary, non-deterministic behavior at an undetermined
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
     * time in the future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
     * @param index index of the first element to be returned from the
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   858
     *              list-iterator (by a call to {@code next})
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
     * @return a ListIterator of the elements in this list (in proper
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
     *         sequence), starting at the specified position in the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
     * @throws IndexOutOfBoundsException {@inheritDoc}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
     * @see List#listIterator(int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    public ListIterator<E> listIterator(int index) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   865
        checkPositionIndex(index);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
        return new ListItr(index);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
    private class ListItr implements ListIterator<E> {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   870
        private Node<E> lastReturned = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   871
        private Node<E> next;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
        private int nextIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        private int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
        ListItr(int index) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   876
            // assert isPositionIndex(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   877
            next = (index == size) ? null : node(index);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   878
            nextIndex = index;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        public boolean hasNext() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   882
            return nextIndex < size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            checkForComodification();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   887
            if (!hasNext())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            lastReturned = next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
            next = next.next;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
            nextIndex++;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   893
            return lastReturned.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
        public boolean hasPrevious() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   897
            return nextIndex > 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        public E previous() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   901
            checkForComodification();
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   902
            if (!hasPrevious())
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
                throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   905
            lastReturned = next = (next == null) ? last : next.prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
            nextIndex--;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   907
            return lastReturned.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        public int nextIndex() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
            return nextIndex;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        public int previousIndex() {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   915
            return nextIndex - 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            checkForComodification();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   920
            if (lastReturned == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
                throw new IllegalStateException();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   922
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   923
            Node<E> lastNext = lastReturned.next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   924
            unlink(lastReturned);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   925
            if (next == lastReturned)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
                next = lastNext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
                nextIndex--;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   929
            lastReturned = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
            expectedModCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        public void set(E e) {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   934
            if (lastReturned == null)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
            checkForComodification();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   937
            lastReturned.item = e;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        public void add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            checkForComodification();
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   942
            lastReturned = null;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   943
            if (next == null)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   944
                linkLast(e);
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   945
            else
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   946
                linkBefore(e, next);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
            nextIndex++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
            expectedModCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
        final void checkForComodification() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
            if (modCount != expectedModCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   957
    private static class Node<E> {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   958
        E item;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   959
        Node<E> next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   960
        Node<E> prev;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   962
        Node(Node<E> prev, E element, Node<E> next) {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   963
            this.item = element;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   964
            this.next = next;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   965
            this.prev = prev;
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   966
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
     * @since 1.6
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
    public Iterator<E> descendingIterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        return new DescendingIterator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   976
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   977
     * Adapter to provide descending iterators via ListItr.previous
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   978
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   979
    private class DescendingIterator implements Iterator<E> {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   980
        private final ListItr itr = new ListItr(size());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
            return itr.hasPrevious();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
            return itr.previous();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
            itr.remove();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   992
    @SuppressWarnings("unchecked")
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   993
    private LinkedList<E> superClone() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        try {
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   995
            return (LinkedList<E>) super.clone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
        } catch (CloneNotSupportedException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
            throw new InternalError();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
        }
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
   999
    }
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1000
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1001
    /**
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1002
     * Returns a shallow copy of this {@code LinkedList}. (The elements
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1003
     * themselves are not cloned.)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1004
     *
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1005
     * @return a shallow copy of this {@code LinkedList} instance
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1006
     */
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1007
    public Object clone() {
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1008
        LinkedList<E> clone = superClone();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        // Put clone into "virgin" state
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1011
        clone.first = clone.last = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
        clone.size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        clone.modCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
        // Initialize clone with our elements
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1016
        for (Node<E> x = first; x != null; x = x.next)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1017
            clone.add(x.item);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        return clone;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
     * Returns an array containing all of the elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
     * in proper sequence (from first to last element).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
     * maintained by this list.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
     * @return an array containing all of the elements in this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
     *         in proper sequence
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        Object[] result = new Object[size];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
        int i = 0;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1039
        for (Node<E> x = first; x != null; x = x.next)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1040
            result[i++] = x.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
     * Returns an array containing all of the elements in this list in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
     * proper sequence (from first to last element); the runtime type of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
     * the returned array is that of the specified array.  If the list fits
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
     * in the specified array, it is returned therein.  Otherwise, a new
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
     * array is allocated with the runtime type of the specified array and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
     * the size of this list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     * <p>If the list fits in the specified array with room to spare (i.e.,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     * the array has more elements than the list), the element in the array
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1054
     * immediately following the end of the list is set to {@code null}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     * (This is useful in determining the length of the list <i>only</i> if
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
     * the caller knows that the list does not contain any null elements.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
     *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1063
     * <p>Suppose {@code x} is a list known to contain only strings.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
     * The following code can be used to dump the list into a newly
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1065
     * allocated array of {@code String}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
     * <pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
     *     String[] y = x.toArray(new String[0]);</pre>
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     *
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1070
     * Note that {@code toArray(new Object[0])} is identical in function to
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1071
     * {@code toArray()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
     * @param a the array into which the elements of the list are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
     * @return an array containing the elements of the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
     *         this list
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
     */
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1082
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
    public <T> T[] toArray(T[] a) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
            a = (T[])java.lang.reflect.Array.newInstance(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
                                a.getClass().getComponentType(), size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
        Object[] result = a;
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1089
        for (Node<E> x = first; x != null; x = x.next)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1090
            result[i++] = x.item;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
        if (a.length > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
            a[size] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
    private static final long serialVersionUID = 876323262645176354L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
    /**
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1101
     * Saves the state of this {@code LinkedList} instance to a stream
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1102
     * (that is, serializes it).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
     * @serialData The size of the list (the number of elements it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
     *             contains) is emitted (int), followed by all of its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
     *             elements (each an Object) in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
    private void writeObject(java.io.ObjectOutputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
        throws java.io.IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
        // Write out any hidden serialization magic
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
        // Write out size
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
        s.writeInt(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        // Write out all elements in the proper order.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1117
        for (Node<E> x = first; x != null; x = x.next)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1118
            s.writeObject(x.item);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
    /**
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1122
     * Reconstitutes this {@code LinkedList} instance from a stream
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1123
     * (that is, deserializes it).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
     */
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1125
    @SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
        // Read in any hidden serialization magic
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
        // Read in size
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
        int size = s.readInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
        // Read in all elements in the proper order.
4184
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1135
        for (int i = 0; i < size; i++)
66ef929d58f2 6897553: LinkedList performance improvements
martin
parents: 2
diff changeset
  1136
            linkLast((E)s.readObject());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
}