ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/LinkedList.java
Revision: 1.34
Committed: Wed May 25 14:05:06 2005 UTC (18 years, 11 months ago) by dl
Branch: MAIN
Changes since 1.33: +2 -2 lines
Log Message:
Avoid generics warnings

File Contents

# User Rev Content
1 tim 1.1 /*
2 dl 1.6 * %W% %E%
3 tim 1.1 *
4 jsr166 1.23 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
5 tim 1.1 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
6     */
7    
8 jsr166 1.24 package java.util;
9 tim 1.1
10     /**
11     * Linked list implementation of the <tt>List</tt> interface. Implements all
12     * optional list operations, and permits all elements (including
13     * <tt>null</tt>). In addition to implementing the <tt>List</tt> interface,
14     * the <tt>LinkedList</tt> class provides uniformly named methods to
15     * <tt>get</tt>, <tt>remove</tt> and <tt>insert</tt> an element at the
16     * beginning and end of the list. These operations allow linked lists to be
17 dl 1.19 * used as a stack, {@linkplain Queue queue}, or {@linkplain Deque
18     * double-ended queue}. <p>
19 tim 1.1 *
20 dl 1.17 * The class implements the <tt>Deque</tt> interface, providing
21 dl 1.3 * first-in-first-out queue operations for <tt>add</tt>,
22 dl 1.21 * <tt>poll</tt>, along with other stack and deque operations.<p>
23 tim 1.1 *
24     * All of the operations perform as could be expected for a doubly-linked
25     * list. Operations that index into the list will traverse the list from
26 dl 1.8 * the beginning or the end, whichever is closer to the specified index.<p>
27 tim 1.1 *
28     * <b>Note that this implementation is not synchronized.</b> If multiple
29     * threads access a list concurrently, and at least one of the threads
30     * modifies the list structurally, it <i>must</i> be synchronized
31     * externally. (A structural modification is any operation that adds or
32     * deletes one or more elements; merely setting the value of an element is not
33     * a structural modification.) This is typically accomplished by
34     * synchronizing on some object that naturally encapsulates the list. If no
35     * such object exists, the list should be "wrapped" using the
36     * Collections.synchronizedList method. This is best done at creation time,
37     * to prevent accidental unsynchronized access to the list: <pre>
38     * List list = Collections.synchronizedList(new LinkedList(...));
39 jsr166 1.24 * </pre>
40 tim 1.1 *
41 jsr166 1.24 * <p>The iterators returned by this class's <tt>iterator</tt> and
42 tim 1.1 * <tt>listIterator</tt> methods are <i>fail-fast</i>: if the list is
43 jsr166 1.24 * structurally modified at any time after the iterator is created, in
44     * any way except through the Iterator's own <tt>remove</tt> or
45     * <tt>add</tt> methods, the iterator will throw a {@link
46     * ConcurrentModificationException}. Thus, in the face of concurrent
47     * modification, the iterator fails quickly and cleanly, rather than
48     * risking arbitrary, non-deterministic behavior at an undetermined
49     * time in the future.
50 tim 1.1 *
51     * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
52     * as it is, generally speaking, impossible to make any hard guarantees in the
53     * presence of unsynchronized concurrent modification. Fail-fast iterators
54 dl 1.3 * throw <tt>ConcurrentModificationException</tt> on a best-effort basis.
55 tim 1.1 * Therefore, it would be wrong to write a program that depended on this
56     * exception for its correctness: <i>the fail-fast behavior of iterators
57 jsr166 1.24 * should be used only to detect bugs.</i>
58 dl 1.3 *
59 jsr166 1.24 * <p>This class is a member of the
60 dl 1.3 * <a href="{@docRoot}/../guide/collections/index.html">
61     * Java Collections Framework</a>.
62 tim 1.1 *
63     * @author Josh Bloch
64 dl 1.6 * @version %I%, %G%
65 jsr166 1.14 * @see List
66     * @see ArrayList
67     * @see Vector
68     * @see Collections#synchronizedList(List)
69 tim 1.1 * @since 1.2
70 dl 1.10 * @param <E> the type of elements held in this collection
71 tim 1.1 */
72    
73 dl 1.3 public class LinkedList<E>
74     extends AbstractSequentialList<E>
75 dl 1.17 implements List<E>, Deque<E>, Cloneable, java.io.Serializable
76 tim 1.1 {
77 dl 1.3 private transient Entry<E> header = new Entry<E>(null, null, null);
78 tim 1.1 private transient int size = 0;
79    
80     /**
81     * Constructs an empty list.
82     */
83     public LinkedList() {
84     header.next = header.previous = header;
85     }
86    
87     /**
88     * Constructs a list containing the elements of the specified
89     * collection, in the order they are returned by the collection's
90     * iterator.
91     *
92 jsr166 1.27 * @param c the collection whose elements are to be placed into this list
93     * @throws NullPointerException if the specified collection is null
94 tim 1.1 */
95 jsr166 1.14 public LinkedList(Collection<? extends E> c) {
96     this();
97     addAll(c);
98     }
99 tim 1.1
100     /**
101     * Returns the first element in this list.
102     *
103 jsr166 1.27 * @return the first element in this list
104     * @throws NoSuchElementException if this list is empty
105 tim 1.1 */
106 dl 1.3 public E getFirst() {
107 jsr166 1.14 if (size==0)
108     throw new NoSuchElementException();
109 tim 1.1
110 jsr166 1.14 return header.next.element;
111 tim 1.1 }
112    
113     /**
114     * Returns the last element in this list.
115     *
116 jsr166 1.27 * @return the last element in this list
117     * @throws NoSuchElementException if this list is empty
118 tim 1.1 */
119 dl 1.3 public E getLast() {
120 jsr166 1.14 if (size==0)
121     throw new NoSuchElementException();
122 tim 1.1
123 jsr166 1.14 return header.previous.element;
124 tim 1.1 }
125    
126     /**
127     * Removes and returns the first element from this list.
128     *
129 jsr166 1.27 * @return the first element from this list
130     * @throws NoSuchElementException if this list is empty
131 tim 1.1 */
132 dl 1.3 public E removeFirst() {
133 jsr166 1.14 return remove(header.next);
134 tim 1.1 }
135    
136     /**
137     * Removes and returns the last element from this list.
138     *
139 jsr166 1.27 * @return the last element from this list
140     * @throws NoSuchElementException if this list is empty
141 tim 1.1 */
142 dl 1.3 public E removeLast() {
143 jsr166 1.14 return remove(header.previous);
144 tim 1.1 }
145    
146     /**
147     * Inserts the given element at the beginning of this list.
148 dl 1.3 *
149 jsr166 1.27 * @param e the element to be inserted at the beginning of this list
150 tim 1.1 */
151 jsr166 1.25 public void addFirst(E e) {
152     addBefore(e, header.next);
153 tim 1.1 }
154    
155     /**
156 jsr166 1.24 * Appends the given element to the end of this list. (Identical in
157 tim 1.1 * function to the <tt>add</tt> method; included only for consistency.)
158 dl 1.3 *
159 jsr166 1.27 * @param e the element to be inserted at the end of this list
160 tim 1.1 */
161 jsr166 1.25 public void addLast(E e) {
162     addBefore(e, header);
163 tim 1.1 }
164    
165     /**
166     * Returns <tt>true</tt> if this list contains the specified element.
167     * More formally, returns <tt>true</tt> if and only if this list contains
168 jsr166 1.28 * at least one element <tt>e</tt> such that
169     * <tt>(o==null&nbsp;?&nbsp;e==null&nbsp;:&nbsp;o.equals(e))</tt>.
170 tim 1.1 *
171 jsr166 1.27 * @param o element whose presence in this list is to be tested
172     * @return <tt>true</tt> if this list contains the specified element
173 tim 1.1 */
174     public boolean contains(Object o) {
175     return indexOf(o) != -1;
176     }
177    
178     /**
179     * Returns the number of elements in this list.
180     *
181 jsr166 1.27 * @return the number of elements in this list
182 tim 1.1 */
183     public int size() {
184 jsr166 1.14 return size;
185 tim 1.1 }
186    
187     /**
188 jsr166 1.24 * Appends the specified element to the end of this list.
189 tim 1.1 *
190 jsr166 1.27 * @param e element to be appended to this list
191     * @return <tt>true</tt> (as per the spec for {@link Collection#add})
192 tim 1.1 */
193 jsr166 1.26 public boolean add(E e) {
194     addBefore(e, header);
195 tim 1.1 return true;
196     }
197    
198     /**
199 jsr166 1.28 * Removes the first occurrence of the specified element from this list,
200     * if it is present. If this list does not contain the element, it is
201     * unchanged. More formally, removes the element with the lowest index
202     * <tt>i</tt> such that
203     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>
204     * (if such an element exists). Returns <tt>true</tt> if this list
205     * contained the specified element (or equivalently, if this list
206     * changed as a result of the call).
207 tim 1.1 *
208 jsr166 1.27 * @param o element to be removed from this list, if present
209 jsr166 1.28 * @return <tt>true</tt> if this list contained the specified element
210 tim 1.1 */
211     public boolean remove(Object o) {
212     if (o==null) {
213 dl 1.3 for (Entry<E> e = header.next; e != header; e = e.next) {
214 tim 1.1 if (e.element==null) {
215     remove(e);
216     return true;
217     }
218     }
219     } else {
220 dl 1.3 for (Entry<E> e = header.next; e != header; e = e.next) {
221 tim 1.1 if (o.equals(e.element)) {
222     remove(e);
223     return true;
224     }
225     }
226     }
227     return false;
228     }
229    
230     /**
231 jsr166 1.24 * Appends all of the elements in the specified collection to the end of
232 tim 1.1 * this list, in the order that they are returned by the specified
233     * collection's iterator. The behavior of this operation is undefined if
234     * the specified collection is modified while the operation is in
235 jsr166 1.33 * progress. (Note that this will occur if the specified collection is
236     * this list, and it's nonempty.)
237 tim 1.1 *
238 jsr166 1.31 * @param c collection containing elements to be added to this list
239 jsr166 1.27 * @return <tt>true</tt> if this list changed as a result of the call
240     * @throws NullPointerException if the specified collection is null
241 tim 1.1 */
242 dl 1.3 public boolean addAll(Collection<? extends E> c) {
243 tim 1.1 return addAll(size, c);
244     }
245    
246     /**
247     * Inserts all of the elements in the specified collection into this
248     * list, starting at the specified position. Shifts the element
249     * currently at that position (if any) and any subsequent elements to
250     * the right (increases their indices). The new elements will appear
251     * in the list in the order that they are returned by the
252     * specified collection's iterator.
253     *
254 jsr166 1.27 * @param index index at which to insert the first element
255     * from the specified collection
256 jsr166 1.31 * @param c collection containing elements to be added to this list
257 jsr166 1.27 * @return <tt>true</tt> if this list changed as a result of the call
258 jsr166 1.28 * @throws IndexOutOfBoundsException {@inheritDoc}
259 jsr166 1.27 * @throws NullPointerException if the specified collection is null
260 tim 1.1 */
261 dl 1.3 public boolean addAll(int index, Collection<? extends E> c) {
262 dl 1.4 if (index < 0 || index > size)
263 dl 1.3 throw new IndexOutOfBoundsException("Index: "+index+
264     ", Size: "+size);
265     Object[] a = c.toArray();
266     int numNew = a.length;
267     if (numNew==0)
268     return false;
269 jsr166 1.14 modCount++;
270 dl 1.3
271     Entry<E> successor = (index==size ? header : entry(index));
272     Entry<E> predecessor = successor.previous;
273 jsr166 1.14 for (int i=0; i<numNew; i++) {
274 dl 1.3 Entry<E> e = new Entry<E>((E)a[i], successor, predecessor);
275 tim 1.1 predecessor.next = e;
276     predecessor = e;
277     }
278     successor.previous = predecessor;
279    
280     size += numNew;
281     return true;
282     }
283    
284     /**
285     * Removes all of the elements from this list.
286     */
287     public void clear() {
288 jsr166 1.14 Entry<E> e = header.next;
289     while (e != header) {
290     Entry<E> next = e.next;
291     e.next = e.previous = null;
292     e.element = null;
293     e = next;
294     }
295 tim 1.1 header.next = header.previous = header;
296 jozart 1.12 size = 0;
297 jsr166 1.14 modCount++;
298 tim 1.1 }
299    
300    
301     // Positional Access Operations
302    
303     /**
304     * Returns the element at the specified position in this list.
305     *
306 jsr166 1.28 * @param index index of the element to return
307 jsr166 1.27 * @return the element at the specified position in this list
308 jsr166 1.28 * @throws IndexOutOfBoundsException {@inheritDoc}
309 tim 1.1 */
310 dl 1.3 public E get(int index) {
311 tim 1.1 return entry(index).element;
312     }
313    
314     /**
315     * Replaces the element at the specified position in this list with the
316     * specified element.
317     *
318 jsr166 1.28 * @param index index of the element to replace
319 jsr166 1.27 * @param element element to be stored at the specified position
320     * @return the element previously at the specified position
321 jsr166 1.28 * @throws IndexOutOfBoundsException {@inheritDoc}
322 tim 1.1 */
323 dl 1.3 public E set(int index, E element) {
324     Entry<E> e = entry(index);
325     E oldVal = e.element;
326 tim 1.1 e.element = element;
327     return oldVal;
328     }
329    
330     /**
331     * Inserts the specified element at the specified position in this list.
332     * Shifts the element currently at that position (if any) and any
333     * subsequent elements to the right (adds one to their indices).
334     *
335 jsr166 1.27 * @param index index at which the specified element is to be inserted
336     * @param element element to be inserted
337 jsr166 1.28 * @throws IndexOutOfBoundsException {@inheritDoc}
338 tim 1.1 */
339 dl 1.3 public void add(int index, E element) {
340 tim 1.1 addBefore(element, (index==size ? header : entry(index)));
341     }
342    
343     /**
344     * Removes the element at the specified position in this list. Shifts any
345     * subsequent elements to the left (subtracts one from their indices).
346     * Returns the element that was removed from the list.
347     *
348 jsr166 1.27 * @param index the index of the element to be removed
349     * @return the element previously at the specified position
350 jsr166 1.28 * @throws IndexOutOfBoundsException {@inheritDoc}
351 tim 1.1 */
352 dl 1.3 public E remove(int index) {
353 jsr166 1.14 return remove(entry(index));
354 tim 1.1 }
355    
356     /**
357 jsr166 1.24 * Returns the indexed entry.
358 tim 1.1 */
359 dl 1.3 private Entry<E> entry(int index) {
360 tim 1.1 if (index < 0 || index >= size)
361     throw new IndexOutOfBoundsException("Index: "+index+
362     ", Size: "+size);
363 dl 1.3 Entry<E> e = header;
364 tim 1.1 if (index < (size >> 1)) {
365     for (int i = 0; i <= index; i++)
366     e = e.next;
367     } else {
368     for (int i = size; i > index; i--)
369     e = e.previous;
370     }
371     return e;
372     }
373    
374    
375     // Search Operations
376    
377     /**
378 jsr166 1.29 * Returns the index of the first occurrence of the specified element
379     * in this list, or -1 if this list does not contain the element.
380     * More formally, returns the lowest index <tt>i</tt> such that
381     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
382     * or -1 if there is no such index.
383 tim 1.1 *
384 jsr166 1.27 * @param o element to search for
385 jsr166 1.29 * @return the index of the first occurrence of the specified element in
386     * this list, or -1 if this list does not contain the element
387 tim 1.1 */
388     public int indexOf(Object o) {
389     int index = 0;
390     if (o==null) {
391     for (Entry e = header.next; e != header; e = e.next) {
392     if (e.element==null)
393     return index;
394     index++;
395     }
396     } else {
397     for (Entry e = header.next; e != header; e = e.next) {
398     if (o.equals(e.element))
399     return index;
400     index++;
401     }
402     }
403     return -1;
404     }
405    
406     /**
407 jsr166 1.29 * Returns the index of the last occurrence of the specified element
408     * in this list, or -1 if this list does not contain the element.
409     * More formally, returns the highest index <tt>i</tt> such that
410     * <tt>(o==null&nbsp;?&nbsp;get(i)==null&nbsp;:&nbsp;o.equals(get(i)))</tt>,
411     * or -1 if there is no such index.
412 tim 1.1 *
413 jsr166 1.27 * @param o element to search for
414 jsr166 1.29 * @return the index of the last occurrence of the specified element in
415     * this list, or -1 if this list does not contain the element
416 tim 1.1 */
417     public int lastIndexOf(Object o) {
418     int index = size;
419     if (o==null) {
420     for (Entry e = header.previous; e != header; e = e.previous) {
421     index--;
422     if (e.element==null)
423     return index;
424     }
425     } else {
426     for (Entry e = header.previous; e != header; e = e.previous) {
427     index--;
428     if (o.equals(e.element))
429     return index;
430     }
431     }
432     return -1;
433     }
434    
435 dl 1.3 // Queue operations.
436    
437     /**
438 dl 1.7 * Retrieves, but does not remove, the head (first element) of this list.
439 jsr166 1.27 * @return the head of this list, or <tt>null</tt> if this list is empty
440 dl 1.7 * @since 1.5
441 dl 1.3 */
442     public E peek() {
443     if (size==0)
444     return null;
445     return getFirst();
446     }
447    
448     /**
449 dl 1.7 * Retrieves, but does not remove, the head (first element) of this list.
450 jsr166 1.27 * @return the head of this list
451     * @throws NoSuchElementException if this list is empty
452 dl 1.7 * @since 1.5
453 dl 1.3 */
454     public E element() {
455     return getFirst();
456     }
457    
458     /**
459 jsr166 1.27 * Retrieves and removes the head (first element) of this list
460     * @return the head of this list, or <tt>null</tt> if this list is empty
461 dl 1.7 * @since 1.5
462 dl 1.3 */
463     public E poll() {
464     if (size==0)
465     return null;
466     return removeFirst();
467     }
468    
469     /**
470 dl 1.7 * Retrieves and removes the head (first element) of this list.
471 jsr166 1.27 *
472     * @return the head of this list
473     * @throws NoSuchElementException if this list is empty
474 dl 1.7 * @since 1.5
475 dl 1.3 */
476     public E remove() {
477     return removeFirst();
478     }
479    
480     /**
481     * Adds the specified element as the tail (last element) of this list.
482     *
483 jsr166 1.27 * @param e the element to add
484     * @return <tt>true</tt> (as per the spec for {@link Queue#offer})
485 dl 1.7 * @since 1.5
486 dl 1.3 */
487 jsr166 1.26 public boolean offer(E e) {
488     return add(e);
489 dl 1.3 }
490    
491 dl 1.17 // Deque operations
492     /**
493 dl 1.22 * Inserts the specified element at the front of this list.
494 dl 1.17 *
495 dl 1.22 * @param e the element to insert
496 dl 1.17 * @return <tt>true</tt> (as per the spec for {@link Deque#offerFirst})
497     * @since 1.6
498     */
499 dl 1.22 public boolean offerFirst(E e) {
500     addFirst(e);
501 dl 1.17 return true;
502     }
503    
504     /**
505 dl 1.22 * Inserts the specified element at the end of this list.
506 dl 1.17 *
507 dl 1.22 * @param e the element to insert
508 dl 1.17 * @return <tt>true</tt> (as per the spec for {@link Deque#offerLast})
509     * @since 1.6
510     */
511 dl 1.22 public boolean offerLast(E e) {
512     addLast(e);
513 dl 1.17 return true;
514     }
515    
516     /**
517 dl 1.19 * Retrieves, but does not remove, the first element of this list,
518 jsr166 1.27 * or returns <tt>null</tt> if this list is empty.
519 dl 1.17 *
520 jsr166 1.27 * @return the first element of this list, or <tt>null</tt>
521 jsr166 1.28 * if this list is empty
522 dl 1.17 * @since 1.6
523     */
524     public E peekFirst() {
525     if (size==0)
526     return null;
527 dl 1.18 return getFirst();
528 dl 1.17 }
529    
530     /**
531 dl 1.19 * Retrieves, but does not remove, the last element of this list,
532 jsr166 1.27 * or returns <tt>null</tt> if this list is empty.
533 dl 1.17 *
534 jsr166 1.27 * @return the last element of this list, or <tt>null</tt>
535 jsr166 1.28 * if this list is empty
536 dl 1.17 * @since 1.6
537     */
538     public E peekLast() {
539     if (size==0)
540     return null;
541 dl 1.18 return getLast();
542 dl 1.17 }
543    
544     /**
545 dl 1.19 * Retrieves and removes the first element of this list, or
546     * <tt>null</tt> if this list is empty.
547 dl 1.17 *
548 dl 1.19 * @return the first element of this list, or <tt>null</tt> if
549     * this list is empty
550 dl 1.17 * @since 1.6
551     */
552     public E pollFirst() {
553     if (size==0)
554     return null;
555     return removeFirst();
556     }
557    
558     /**
559 dl 1.19 * Retrieves and removes the last element of this list, or
560     * <tt>null</tt> if this list is empty.
561 dl 1.17 *
562 dl 1.19 * @return the last element of this list, or <tt>null</tt> if
563     * this list is empty
564 dl 1.17 * @since 1.6
565     */
566     public E pollLast() {
567     if (size==0)
568     return null;
569     return removeLast();
570     }
571    
572     /**
573 dl 1.19 * Pushes an element onto the stack represented by this list. In other
574 dl 1.22 * words, inserts the element at the front of this list.
575 dl 1.17 *
576     * <p>This method is equivalent to {@link #addFirst}.
577     *
578 dl 1.22 * @param e the element to push
579 dl 1.17 * @since 1.6
580     */
581 dl 1.22 public void push(E e) {
582     addFirst(e);
583 dl 1.17 }
584    
585     /**
586 dl 1.19 * Pops an element from the stack represented by this list. In other
587 dl 1.20 * words, removes and returns the first element of this list.
588 dl 1.17 *
589     * <p>This method is equivalent to {@link #removeFirst()}.
590     *
591 dl 1.19 * @return the element at the front of this list (which is the top
592 jsr166 1.27 * of the stack represented by this list)
593     * @throws NoSuchElementException if this list is empty
594 dl 1.17 * @since 1.6
595     */
596     public E pop() {
597     return removeFirst();
598     }
599    
600     /**
601     * Removes the first occurrence of the specified element in this
602 dl 1.19 * list (when traversing the list from head to tail). If the list
603 dl 1.17 * does not contain the element, it is unchanged.
604     *
605 dl 1.21 * @param o element to be removed from this list, if present
606 dl 1.19 * @return <tt>true</tt> if the list contained the specified element
607 dl 1.17 * @since 1.6
608     */
609 dl 1.21 public boolean removeFirstOccurrence(Object o) {
610     return remove(o);
611 dl 1.17 }
612    
613     /**
614     * Removes the last occurrence of the specified element in this
615 dl 1.19 * list (when traversing the list from head to tail). If the list
616 dl 1.17 * does not contain the element, it is unchanged.
617     *
618 dl 1.19 * @param o element to be removed from this list, if present
619     * @return <tt>true</tt> if the list contained the specified element
620 dl 1.17 * @since 1.6
621     */
622     public boolean removeLastOccurrence(Object o) {
623     if (o==null) {
624 dl 1.34 for (Entry<E> e = header.previous; e != header; e = e.previous) {
625 dl 1.17 if (e.element==null) {
626     remove(e);
627     return true;
628     }
629     }
630     } else {
631 dl 1.34 for (Entry<E> e = header.previous; e != header; e = e.previous) {
632 dl 1.17 if (o.equals(e.element)) {
633     remove(e);
634     return true;
635     }
636     }
637     }
638     return false;
639     }
640    
641 tim 1.1 /**
642     * Returns a list-iterator of the elements in this list (in proper
643     * sequence), starting at the specified position in the list.
644     * Obeys the general contract of <tt>List.listIterator(int)</tt>.<p>
645     *
646     * The list-iterator is <i>fail-fast</i>: if the list is structurally
647     * modified at any time after the Iterator is created, in any way except
648     * through the list-iterator's own <tt>remove</tt> or <tt>add</tt>
649     * methods, the list-iterator will throw a
650     * <tt>ConcurrentModificationException</tt>. Thus, in the face of
651     * concurrent modification, the iterator fails quickly and cleanly, rather
652     * than risking arbitrary, non-deterministic behavior at an undetermined
653     * time in the future.
654     *
655 jsr166 1.27 * @param index index of the first element to be returned from the
656 jsr166 1.28 * list-iterator (by a call to <tt>next</tt>)
657 tim 1.1 * @return a ListIterator of the elements in this list (in proper
658 jsr166 1.28 * sequence), starting at the specified position in the list
659     * @throws IndexOutOfBoundsException {@inheritDoc}
660 dl 1.3 * @see List#listIterator(int)
661 tim 1.1 */
662 dl 1.3 public ListIterator<E> listIterator(int index) {
663 jsr166 1.14 return new ListItr(index);
664 tim 1.1 }
665    
666 dl 1.3 private class ListItr implements ListIterator<E> {
667 jsr166 1.14 private Entry<E> lastReturned = header;
668     private Entry<E> next;
669     private int nextIndex;
670     private int expectedModCount = modCount;
671    
672     ListItr(int index) {
673     if (index < 0 || index > size)
674     throw new IndexOutOfBoundsException("Index: "+index+
675     ", Size: "+size);
676     if (index < (size >> 1)) {
677     next = header.next;
678     for (nextIndex=0; nextIndex<index; nextIndex++)
679     next = next.next;
680     } else {
681     next = header;
682     for (nextIndex=size; nextIndex>index; nextIndex--)
683     next = next.previous;
684     }
685     }
686    
687     public boolean hasNext() {
688     return nextIndex != size;
689     }
690    
691     public E next() {
692     checkForComodification();
693     if (nextIndex == size)
694     throw new NoSuchElementException();
695    
696     lastReturned = next;
697     next = next.next;
698     nextIndex++;
699     return lastReturned.element;
700     }
701    
702     public boolean hasPrevious() {
703     return nextIndex != 0;
704     }
705    
706     public E previous() {
707     if (nextIndex == 0)
708     throw new NoSuchElementException();
709    
710     lastReturned = next = next.previous;
711     nextIndex--;
712     checkForComodification();
713     return lastReturned.element;
714     }
715    
716     public int nextIndex() {
717     return nextIndex;
718     }
719    
720     public int previousIndex() {
721     return nextIndex-1;
722     }
723 jozart 1.12
724 jsr166 1.14 public void remove() {
725 tim 1.1 checkForComodification();
726 jsr166 1.14 Entry<E> lastNext = lastReturned.next;
727 tim 1.1 try {
728     LinkedList.this.remove(lastReturned);
729     } catch (NoSuchElementException e) {
730     throw new IllegalStateException();
731     }
732 jsr166 1.14 if (next==lastReturned)
733     next = lastNext;
734 tim 1.1 else
735 jsr166 1.14 nextIndex--;
736     lastReturned = header;
737     expectedModCount++;
738     }
739    
740 jsr166 1.26 public void set(E e) {
741 jsr166 1.14 if (lastReturned == header)
742     throw new IllegalStateException();
743     checkForComodification();
744 jsr166 1.26 lastReturned.element = e;
745 jsr166 1.14 }
746    
747 jsr166 1.26 public void add(E e) {
748 jsr166 1.14 checkForComodification();
749     lastReturned = header;
750 jsr166 1.26 addBefore(e, next);
751 jsr166 1.14 nextIndex++;
752     expectedModCount++;
753     }
754    
755     final void checkForComodification() {
756     if (modCount != expectedModCount)
757     throw new ConcurrentModificationException();
758     }
759 dl 1.3 }
760    
761     private static class Entry<E> {
762 jsr166 1.14 E element;
763     Entry<E> next;
764     Entry<E> previous;
765    
766     Entry(E element, Entry<E> next, Entry<E> previous) {
767     this.element = element;
768     this.next = next;
769     this.previous = previous;
770     }
771 dl 1.3 }
772    
773 jsr166 1.26 private Entry<E> addBefore(E e, Entry<E> entry) {
774     Entry<E> newEntry = new Entry<E>(e, entry, entry.previous);
775 jsr166 1.14 newEntry.previous.next = newEntry;
776     newEntry.next.previous = newEntry;
777     size++;
778     modCount++;
779     return newEntry;
780     }
781    
782     private E remove(Entry<E> e) {
783     if (e == header)
784     throw new NoSuchElementException();
785    
786     E result = e.element;
787     e.previous.next = e.next;
788     e.next.previous = e.previous;
789     e.next = e.previous = null;
790     e.element = null;
791     size--;
792     modCount++;
793     return result;
794 tim 1.1 }
795    
796     /**
797     * Returns a shallow copy of this <tt>LinkedList</tt>. (The elements
798     * themselves are not cloned.)
799     *
800 jsr166 1.27 * @return a shallow copy of this <tt>LinkedList</tt> instance
801 tim 1.1 */
802     public Object clone() {
803 dl 1.3 LinkedList<E> clone = null;
804 jsr166 1.14 try {
805     clone = (LinkedList<E>) super.clone();
806     } catch (CloneNotSupportedException e) {
807     throw new InternalError();
808     }
809 tim 1.1
810     // Put clone into "virgin" state
811 dl 1.3 clone.header = new Entry<E>(null, null, null);
812 tim 1.1 clone.header.next = clone.header.previous = clone.header;
813     clone.size = 0;
814     clone.modCount = 0;
815    
816     // Initialize clone with our elements
817 dl 1.3 for (Entry<E> e = header.next; e != header; e = e.next)
818 tim 1.1 clone.add(e.element);
819    
820     return clone;
821     }
822    
823     /**
824     * Returns an array containing all of the elements in this list
825 jsr166 1.29 * in proper sequence (from first to last element).
826 tim 1.1 *
827 jsr166 1.29 * <p>The returned array will be "safe" in that no references to it are
828     * maintained by this list. (In other words, this method must allocate
829     * a new array). The caller is thus free to modify the returned array.
830 jsr166 1.32 *
831 jsr166 1.30 * <p>This method acts as bridge between array-based and collection-based
832     * APIs.
833     *
834 tim 1.1 * @return an array containing all of the elements in this list
835 jsr166 1.29 * in proper sequence
836 tim 1.1 */
837     public Object[] toArray() {
838 jsr166 1.14 Object[] result = new Object[size];
839 tim 1.1 int i = 0;
840 dl 1.3 for (Entry<E> e = header.next; e != header; e = e.next)
841 tim 1.1 result[i++] = e.element;
842 jsr166 1.14 return result;
843 tim 1.1 }
844    
845     /**
846     * Returns an array containing all of the elements in this list in
847 jsr166 1.29 * proper sequence (from first to last element); the runtime type of
848     * the returned array is that of the specified array. If the list fits
849     * in the specified array, it is returned therein. Otherwise, a new
850     * array is allocated with the runtime type of the specified array and
851     * the size of this list.
852     *
853     * <p>If the list fits in the specified array with room to spare (i.e.,
854     * the array has more elements than the list), the element in the array
855     * immediately following the end of the list is set to <tt>null</tt>.
856     * (This is useful in determining the length of the list <i>only</i> if
857     * the caller knows that the list does not contain any null elements.)
858     *
859     * <p>Like the {@link #toArray()} method, this method acts as bridge between
860     * array-based and collection-based APIs. Further, this method allows
861     * precise control over the runtime type of the output array, and may,
862     * under certain circumstances, be used to save allocation costs.
863     *
864     * <p>Suppose <tt>x</tt> is a list known to contain only strings.
865     * The following code can be used to dump the list into a newly
866     * allocated array of <tt>String</tt>:
867     *
868     * <pre>
869     * String[] y = x.toArray(new String[0]);</pre>
870     *
871     * Note that <tt>toArray(new Object[0])</tt> is identical in function to
872     * <tt>toArray()</tt>.
873 tim 1.1 *
874     * @param a the array into which the elements of the list are to
875 jsr166 1.27 * be stored, if it is big enough; otherwise, a new array of the
876     * same runtime type is allocated for this purpose.
877     * @return an array containing the elements of the list
878 jsr166 1.29 * @throws ArrayStoreException if the runtime type of the specified array
879     * is not a supertype of the runtime type of every element in
880     * this list
881 jsr166 1.27 * @throws NullPointerException if the specified array is null
882 tim 1.1 */
883 dl 1.3 public <T> T[] toArray(T[] a) {
884 tim 1.1 if (a.length < size)
885 dl 1.3 a = (T[])java.lang.reflect.Array.newInstance(
886 tim 1.1 a.getClass().getComponentType(), size);
887     int i = 0;
888 jsr166 1.14 Object[] result = a;
889 dl 1.3 for (Entry<E> e = header.next; e != header; e = e.next)
890     result[i++] = e.element;
891 tim 1.1
892     if (a.length > size)
893     a[size] = null;
894    
895     return a;
896     }
897    
898     private static final long serialVersionUID = 876323262645176354L;
899    
900     /**
901     * Save the state of this <tt>LinkedList</tt> instance to a stream (that
902     * is, serialize it).
903     *
904     * @serialData The size of the list (the number of elements it
905 jsr166 1.27 * contains) is emitted (int), followed by all of its
906     * elements (each an Object) in the proper order.
907 tim 1.1 */
908 dl 1.3 private void writeObject(java.io.ObjectOutputStream s)
909 tim 1.1 throws java.io.IOException {
910 jsr166 1.14 // Write out any hidden serialization magic
911     s.defaultWriteObject();
912 tim 1.1
913     // Write out size
914     s.writeInt(size);
915    
916 jsr166 1.14 // Write out all elements in the proper order.
917 tim 1.1 for (Entry e = header.next; e != header; e = e.next)
918     s.writeObject(e.element);
919     }
920    
921     /**
922     * Reconstitute this <tt>LinkedList</tt> instance from a stream (that is
923     * deserialize it).
924     */
925 dl 1.3 private void readObject(java.io.ObjectInputStream s)
926 tim 1.1 throws java.io.IOException, ClassNotFoundException {
927 jsr166 1.14 // Read in any hidden serialization magic
928     s.defaultReadObject();
929 tim 1.1
930     // Read in size
931     int size = s.readInt();
932    
933     // Initialize header
934 dl 1.3 header = new Entry<E>(null, null, null);
935 tim 1.1 header.next = header.previous = header;
936    
937 jsr166 1.14 // Read in all elements in the proper order.
938     for (int i=0; i<size; i++)
939 dl 1.3 addBefore((E)s.readObject(), header);
940 tim 1.1 }
941     }