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