ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/LinkedList.java
Revision: 1.54
Committed: Sat May 7 12:22:03 2011 UTC (13 years ago) by dl
Branch: MAIN
CVS Tags: HEAD
Changes since 1.53: +0 -0 lines
State: FILE REMOVED
Log Message:
Stop shadowing OpenJDK classes not originated by jsr166

File Contents

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