ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/main/java/util/ArrayDeque.java
Revision: 1.84
Committed: Sun Oct 23 16:08:46 2016 UTC (7 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.83: +6 -6 lines
Log Message:
rename local x -> e

File Contents

# User Rev Content
1 dl 1.1 /*
2 dl 1.47 * Written by Josh Bloch of Google Inc. and released to the public domain,
3     * as explained at http://creativecommons.org/publicdomain/zero/1.0/.
4 dl 1.1 */
5    
6     package java.util;
7 jsr166 1.61
8 dl 1.47 import java.io.Serializable;
9     import java.util.function.Consumer;
10 jsr166 1.75 import java.util.function.Predicate;
11     import java.util.function.UnaryOperator;
12 dl 1.1
13     /**
14     * Resizable-array implementation of the {@link Deque} interface. Array
15     * deques have no capacity restrictions; they grow as necessary to support
16     * usage. They are not thread-safe; in the absence of external
17     * synchronization, they do not support concurrent access by multiple threads.
18     * Null elements are prohibited. This class is likely to be faster than
19 dl 1.2 * {@link Stack} when used as a stack, and faster than {@link LinkedList}
20 dl 1.1 * when used as a queue.
21     *
22 jsr166 1.43 * <p>Most {@code ArrayDeque} operations run in amortized constant time.
23 jsr166 1.51 * Exceptions include
24     * {@link #remove(Object) remove},
25     * {@link #removeFirstOccurrence removeFirstOccurrence},
26     * {@link #removeLastOccurrence removeLastOccurrence},
27     * {@link #contains contains},
28     * {@link #iterator iterator.remove()},
29     * and the bulk operations, all of which run in linear time.
30 dl 1.41 *
31 jsr166 1.51 * <p>The iterators returned by this class's {@link #iterator() iterator}
32     * method are <em>fail-fast</em>: If the deque is modified at any time after
33     * the iterator is created, in any way except through the iterator's own
34     * {@code remove} method, the iterator will generally throw a {@link
35 jsr166 1.7 * ConcurrentModificationException}. Thus, in the face of concurrent
36     * modification, the iterator fails quickly and cleanly, rather than risking
37     * arbitrary, non-deterministic behavior at an undetermined time in the
38     * future.
39 dl 1.1 *
40     * <p>Note that the fail-fast behavior of an iterator cannot be guaranteed
41     * as it is, generally speaking, impossible to make any hard guarantees in the
42     * presence of unsynchronized concurrent modification. Fail-fast iterators
43 jsr166 1.43 * throw {@code ConcurrentModificationException} on a best-effort basis.
44 dl 1.1 * Therefore, it would be wrong to write a program that depended on this
45     * exception for its correctness: <i>the fail-fast behavior of iterators
46     * should be used only to detect bugs.</i>
47     *
48     * <p>This class and its iterator implement all of the
49 jsr166 1.9 * <em>optional</em> methods of the {@link Collection} and {@link
50     * Iterator} interfaces.
51     *
52     * <p>This class is a member of the
53 jsr166 1.29 * <a href="{@docRoot}/../technotes/guides/collections/index.html">
54 jsr166 1.9 * Java Collections Framework</a>.
55 dl 1.1 *
56     * @author Josh Bloch and Doug Lea
57 jsr166 1.74 * @param <E> the type of elements held in this deque
58 dl 1.1 * @since 1.6
59     */
60     public class ArrayDeque<E> extends AbstractCollection<E>
61 dl 1.47 implements Deque<E>, Cloneable, Serializable
62 dl 1.1 {
63     /**
64 dl 1.4 * The array in which the elements of the deque are stored.
65 jsr166 1.75 * We guarantee that all array cells not holding deque elements
66     * are always null.
67 dl 1.1 */
68 jsr166 1.75 transient Object[] elements;
69 dl 1.1
70     /**
71     * The index of the element at the head of the deque (which is the
72     * element that would be removed by remove() or pop()); or an
73 jsr166 1.75 * arbitrary number 0 <= head < elements.length if the deque is empty.
74 dl 1.1 */
75 dl 1.41 transient int head;
76 dl 1.1
77 jsr166 1.75 /** Number of elements in this collection. */
78     transient int size;
79    
80 dl 1.1 /**
81 jsr166 1.75 * The maximum size of array to allocate.
82     * Some VMs reserve some header words in an array.
83     * Attempts to allocate larger arrays may result in
84     * OutOfMemoryError: Requested array size exceeds VM limit
85 dl 1.1 */
86 jsr166 1.75 private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
87 dl 1.1
88     /**
89 jsr166 1.75 * Increases the capacity of this deque by at least the given amount.
90     *
91     * @param needed the required minimum extra capacity; must be positive
92 dl 1.1 */
93 jsr166 1.75 private void grow(int needed) {
94     // overflow-conscious code
95     // checkInvariants();
96     int oldCapacity = elements.length;
97     int newCapacity;
98     // Double size if small; else grow by 50%
99     int jump = (oldCapacity < 64) ? (oldCapacity + 2) : (oldCapacity >> 1);
100     if (jump < needed
101     || (newCapacity = (oldCapacity + jump)) - MAX_ARRAY_SIZE > 0)
102     newCapacity = newCapacity(needed, jump);
103     elements = Arrays.copyOf(elements, newCapacity);
104     if (oldCapacity - head < size) {
105     // wrap around; slide first leg forward to end of array
106     int newSpace = newCapacity - oldCapacity;
107     System.arraycopy(elements, head,
108     elements, head + newSpace,
109     oldCapacity - head);
110     Arrays.fill(elements, head, head + newSpace, null);
111     head += newSpace;
112     }
113     // checkInvariants();
114     }
115 dl 1.1
116 jsr166 1.75 /** Capacity calculation for edge conditions, especially overflow. */
117     private int newCapacity(int needed, int jump) {
118     int oldCapacity = elements.length;
119     int minCapacity;
120     if ((minCapacity = oldCapacity + needed) - MAX_ARRAY_SIZE > 0) {
121     if (minCapacity < 0)
122     throw new IllegalStateException("Sorry, deque too big");
123     return Integer.MAX_VALUE;
124     }
125     if (needed > jump)
126     return minCapacity;
127     return (oldCapacity + jump - MAX_ARRAY_SIZE < 0)
128     ? oldCapacity + jump
129     : MAX_ARRAY_SIZE;
130     }
131 dl 1.1
132     /**
133 jsr166 1.75 * Increases the internal storage of this collection, if necessary,
134     * to ensure that it can hold at least the given number of elements.
135 dl 1.1 *
136 jsr166 1.75 * @param minCapacity the desired minimum capacity
137 jsr166 1.80 * @since TBD
138 dl 1.1 */
139 jsr166 1.80 /* public */ void ensureCapacity(int minCapacity) {
140 jsr166 1.75 if (minCapacity > elements.length)
141     grow(minCapacity - elements.length);
142     // checkInvariants();
143 dl 1.1 }
144    
145     /**
146 jsr166 1.75 * Minimizes the internal storage of this collection.
147 jsr166 1.80 *
148     * @since TBD
149 dl 1.1 */
150 jsr166 1.80 /* public */ void trimToSize() {
151 jsr166 1.75 if (size < elements.length) {
152     elements = toArray();
153     head = 0;
154     }
155     // checkInvariants();
156 dl 1.1 }
157    
158     /**
159 dl 1.4 * Constructs an empty array deque with an initial capacity
160 dl 1.1 * sufficient to hold 16 elements.
161     */
162     public ArrayDeque() {
163 jsr166 1.34 elements = new Object[16];
164 dl 1.1 }
165    
166     /**
167     * Constructs an empty array deque with an initial capacity
168     * sufficient to hold the specified number of elements.
169     *
170 jsr166 1.75 * @param numElements lower bound on initial capacity of the deque
171 dl 1.1 */
172     public ArrayDeque(int numElements) {
173 jsr166 1.75 elements = new Object[numElements];
174 dl 1.1 }
175    
176     /**
177     * Constructs a deque containing the elements of the specified
178     * collection, in the order they are returned by the collection's
179     * iterator. (The first element returned by the collection's
180     * iterator becomes the first element, or <i>front</i> of the
181     * deque.)
182     *
183     * @param c the collection whose elements are to be placed into the deque
184     * @throws NullPointerException if the specified collection is null
185     */
186     public ArrayDeque(Collection<? extends E> c) {
187 jsr166 1.75 Object[] elements = c.toArray();
188     // defend against c.toArray (incorrectly) not returning Object[]
189     // (see e.g. https://bugs.openjdk.java.net/browse/JDK-6260652)
190     if (elements.getClass() != Object[].class)
191     elements = Arrays.copyOf(elements, size, Object[].class);
192     for (Object obj : elements)
193     Objects.requireNonNull(obj);
194     size = elements.length;
195     this.elements = elements;
196     }
197    
198     /**
199 jsr166 1.79 * Increments i, mod modulus.
200     * Precondition and postcondition: 0 <= i < modulus.
201 jsr166 1.75 */
202 jsr166 1.79 static final int inc(int i, int modulus) {
203     if (++i == modulus) i = 0;
204     return i;
205 jsr166 1.75 }
206    
207     /**
208 jsr166 1.79 * Decrements i, mod modulus.
209     * Precondition and postcondition: 0 <= i < modulus.
210 jsr166 1.75 */
211 jsr166 1.79 static final int dec(int i, int modulus) {
212     if (--i < 0) i += modulus;
213 jsr166 1.75 return i;
214     }
215    
216     /**
217 jsr166 1.79 * Adds i and j, mod modulus.
218     * Precondition and postcondition: 0 <= i < modulus, 0 <= j <= modulus.
219 jsr166 1.75 */
220 jsr166 1.79 static final int add(int i, int j, int modulus) {
221     if ((i += j) - modulus >= 0) i -= modulus;
222 jsr166 1.75 return i;
223     }
224    
225     /**
226 jsr166 1.79 * Returns the array index of the last element.
227     * May return invalid index -1 if there are no elements.
228 jsr166 1.75 */
229 jsr166 1.79 final int tail() {
230     return add(head, size - 1, elements.length);
231 jsr166 1.75 }
232    
233     /**
234     * Returns element at array index i.
235     */
236     @SuppressWarnings("unchecked")
237     final E elementAt(int i) {
238     return (E) elements[i];
239     }
240    
241     /**
242     * A version of elementAt that checks for null elements.
243     * This check doesn't catch all possible comodifications,
244     * but does catch ones that corrupt traversal.
245     */
246     E checkedElementAt(Object[] elements, int i) {
247     @SuppressWarnings("unchecked") E e = (E) elements[i];
248     if (e == null)
249     throw new ConcurrentModificationException();
250     return e;
251 dl 1.1 }
252    
253     // The main insertion and extraction methods are addFirst,
254     // addLast, pollFirst, pollLast. The other methods are defined in
255     // terms of these.
256    
257     /**
258 dl 1.5 * Inserts the specified element at the front of this deque.
259 dl 1.1 *
260 jsr166 1.9 * @param e the element to add
261     * @throws NullPointerException if the specified element is null
262 dl 1.1 */
263     public void addFirst(E e) {
264 jsr166 1.75 // checkInvariants();
265     Objects.requireNonNull(e);
266 jsr166 1.82 final Object[] elements;
267     final int capacity, s;
268     if ((s = size) == (capacity = (elements = this.elements).length))
269     addFirstSlowPath(e);
270     else
271     elements[head = dec(head, capacity)] = e;
272 jsr166 1.75 size = s + 1;
273 jsr166 1.83 // checkInvariants();
274 dl 1.1 }
275    
276 jsr166 1.82 private void addFirstSlowPath(E e) {
277     grow(1);
278     final Object[] elements = this.elements;
279     elements[head = dec(head, elements.length)] = e;
280     }
281    
282 dl 1.1 /**
283 dl 1.6 * Inserts the specified element at the end of this deque.
284 jsr166 1.14 *
285     * <p>This method is equivalent to {@link #add}.
286 dl 1.1 *
287 jsr166 1.9 * @param e the element to add
288     * @throws NullPointerException if the specified element is null
289 dl 1.1 */
290     public void addLast(E e) {
291 jsr166 1.75 // checkInvariants();
292     Objects.requireNonNull(e);
293 jsr166 1.82 final Object[] elements;
294     final int capacity, s;
295     if ((s = size) == (capacity = (elements = this.elements).length))
296     addLastSlowPath(e);
297     else
298     elements[add(head, s, capacity)] = e;
299 jsr166 1.75 size = s + 1;
300 jsr166 1.83 // checkInvariants();
301 jsr166 1.75 }
302    
303 jsr166 1.82 private void addLastSlowPath(E e) {
304     grow(1);
305     final Object[] elements = this.elements;
306     elements[add(head, size, elements.length)] = e;
307     }
308    
309 jsr166 1.75 /**
310     * Adds all of the elements in the specified collection at the end
311     * of this deque, as if by calling {@link #addLast} on each one,
312     * in the order that they are returned by the collection's
313     * iterator.
314     *
315     * @param c the elements to be inserted into this deque
316     * @return {@code true} if this deque changed as a result of the call
317     * @throws NullPointerException if the specified collection or any
318     * of its elements are null
319     */
320     @Override
321     public boolean addAll(Collection<? extends E> c) {
322     // checkInvariants();
323     Object[] a, elements;
324 jsr166 1.79 int newcomers, capacity, s = size;
325     if ((newcomers = (a = c.toArray()).length) == 0)
326 jsr166 1.75 return false;
327 jsr166 1.79 while ((capacity = (elements = this.elements).length) - s < newcomers)
328     grow(newcomers - (capacity - s));
329 jsr166 1.75 int i = add(head, s, capacity);
330     for (Object x : a) {
331     Objects.requireNonNull(x);
332     elements[i] = x;
333     i = inc(i, capacity);
334     size++;
335     }
336     return true;
337 dl 1.1 }
338    
339     /**
340 dl 1.5 * Inserts the specified element at the front of this deque.
341 dl 1.1 *
342 jsr166 1.9 * @param e the element to add
343 jsr166 1.40 * @return {@code true} (as specified by {@link Deque#offerFirst})
344 jsr166 1.9 * @throws NullPointerException if the specified element is null
345 dl 1.1 */
346     public boolean offerFirst(E e) {
347     addFirst(e);
348     return true;
349     }
350    
351     /**
352 dl 1.6 * Inserts the specified element at the end of this deque.
353 dl 1.1 *
354 jsr166 1.9 * @param e the element to add
355 jsr166 1.40 * @return {@code true} (as specified by {@link Deque#offerLast})
356 jsr166 1.9 * @throws NullPointerException if the specified element is null
357 dl 1.1 */
358     public boolean offerLast(E e) {
359     addLast(e);
360     return true;
361     }
362    
363     /**
364 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
365 dl 1.1 */
366     public E removeFirst() {
367 jsr166 1.75 // checkInvariants();
368 jsr166 1.84 E e = pollFirst();
369     if (e == null)
370 dl 1.1 throw new NoSuchElementException();
371 jsr166 1.84 return e;
372 dl 1.1 }
373    
374     /**
375 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
376 dl 1.1 */
377     public E removeLast() {
378 jsr166 1.75 // checkInvariants();
379 jsr166 1.84 E e = pollLast();
380     if (e == null)
381 dl 1.1 throw new NoSuchElementException();
382 jsr166 1.84 return e;
383 dl 1.1 }
384    
385 jsr166 1.9 public E pollFirst() {
386 jsr166 1.75 // checkInvariants();
387     final int s, h;
388     if ((s = size) == 0)
389     return null;
390 jsr166 1.66 final Object[] elements = this.elements;
391 jsr166 1.75 @SuppressWarnings("unchecked") E e = (E) elements[h = head];
392     elements[h] = null;
393     head = inc(h, elements.length);
394     size = s - 1;
395     return e;
396 dl 1.1 }
397    
398 jsr166 1.9 public E pollLast() {
399 jsr166 1.75 // checkInvariants();
400     final int s, tail;
401     if ((s = size) == 0)
402     return null;
403 jsr166 1.66 final Object[] elements = this.elements;
404 jsr166 1.37 @SuppressWarnings("unchecked")
405 jsr166 1.75 E e = (E) elements[tail = add(head, s - 1, elements.length)];
406     elements[tail] = null;
407     size = s - 1;
408     return e;
409 dl 1.1 }
410    
411     /**
412 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
413 dl 1.1 */
414     public E getFirst() {
415 jsr166 1.75 // checkInvariants();
416     if (size == 0) throw new NoSuchElementException();
417     return elementAt(head);
418 dl 1.1 }
419    
420     /**
421 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
422 dl 1.1 */
423     public E getLast() {
424 jsr166 1.75 // checkInvariants();
425     if (size == 0) throw new NoSuchElementException();
426     return elementAt(tail());
427 dl 1.1 }
428    
429 jsr166 1.9 public E peekFirst() {
430 jsr166 1.75 // checkInvariants();
431     return (size == 0) ? null : elementAt(head);
432 jsr166 1.9 }
433    
434     public E peekLast() {
435 jsr166 1.75 // checkInvariants();
436     return (size == 0) ? null : elementAt(tail());
437 jsr166 1.9 }
438    
439 dl 1.1 /**
440     * Removes the first occurrence of the specified element in this
441 jsr166 1.9 * deque (when traversing the deque from head to tail).
442     * If the deque does not contain the element, it is unchanged.
443 jsr166 1.40 * More formally, removes the first element {@code e} such that
444     * {@code o.equals(e)} (if such an element exists).
445     * Returns {@code true} if this deque contained the specified element
446 jsr166 1.12 * (or equivalently, if this deque changed as a result of the call).
447 dl 1.1 *
448 dl 1.5 * @param o element to be removed from this deque, if present
449 jsr166 1.40 * @return {@code true} if the deque contained the specified element
450 dl 1.1 */
451 dl 1.5 public boolean removeFirstOccurrence(Object o) {
452 jsr166 1.75 // checkInvariants();
453 jsr166 1.58 if (o != null) {
454 jsr166 1.75 final Object[] elements = this.elements;
455     final int capacity = elements.length;
456     for (int k = size, i = head; --k >= 0; i = inc(i, capacity)) {
457     if (o.equals(elements[i])) {
458 jsr166 1.58 delete(i);
459     return true;
460     }
461 dl 1.1 }
462     }
463     return false;
464     }
465    
466     /**
467     * Removes the last occurrence of the specified element in this
468 jsr166 1.9 * deque (when traversing the deque from head to tail).
469     * If the deque does not contain the element, it is unchanged.
470 jsr166 1.40 * More formally, removes the last element {@code e} such that
471     * {@code o.equals(e)} (if such an element exists).
472     * Returns {@code true} if this deque contained the specified element
473 jsr166 1.12 * (or equivalently, if this deque changed as a result of the call).
474 dl 1.1 *
475 dl 1.5 * @param o element to be removed from this deque, if present
476 jsr166 1.40 * @return {@code true} if the deque contained the specified element
477 dl 1.1 */
478 dl 1.5 public boolean removeLastOccurrence(Object o) {
479 jsr166 1.59 if (o != null) {
480 jsr166 1.75 final Object[] elements = this.elements;
481     final int capacity = elements.length;
482     for (int k = size, i = add(head, k - 1, capacity);
483     --k >= 0; i = dec(i, capacity)) {
484     if (o.equals(elements[i])) {
485 jsr166 1.59 delete(i);
486     return true;
487     }
488 dl 1.1 }
489     }
490     return false;
491     }
492    
493     // *** Queue methods ***
494    
495     /**
496 dl 1.6 * Inserts the specified element at the end of this deque.
497 dl 1.1 *
498     * <p>This method is equivalent to {@link #addLast}.
499     *
500 jsr166 1.9 * @param e the element to add
501 jsr166 1.40 * @return {@code true} (as specified by {@link Collection#add})
502 jsr166 1.9 * @throws NullPointerException if the specified element is null
503 dl 1.1 */
504     public boolean add(E e) {
505     addLast(e);
506     return true;
507     }
508    
509     /**
510 jsr166 1.9 * Inserts the specified element at the end of this deque.
511 dl 1.1 *
512 jsr166 1.9 * <p>This method is equivalent to {@link #offerLast}.
513 dl 1.1 *
514 jsr166 1.9 * @param e the element to add
515 jsr166 1.40 * @return {@code true} (as specified by {@link Queue#offer})
516 jsr166 1.9 * @throws NullPointerException if the specified element is null
517 dl 1.1 */
518 jsr166 1.9 public boolean offer(E e) {
519     return offerLast(e);
520 dl 1.1 }
521    
522     /**
523     * Retrieves and removes the head of the queue represented by this deque.
524 jsr166 1.15 *
525     * This method differs from {@link #poll poll} only in that it throws an
526 jsr166 1.9 * exception if this deque is empty.
527 dl 1.1 *
528     * <p>This method is equivalent to {@link #removeFirst}.
529     *
530     * @return the head of the queue represented by this deque
531 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
532 dl 1.1 */
533     public E remove() {
534     return removeFirst();
535     }
536    
537     /**
538 jsr166 1.9 * Retrieves and removes the head of the queue represented by this deque
539     * (in other words, the first element of this deque), or returns
540 jsr166 1.40 * {@code null} if this deque is empty.
541 dl 1.1 *
542 jsr166 1.9 * <p>This method is equivalent to {@link #pollFirst}.
543 dl 1.1 *
544     * @return the head of the queue represented by this deque, or
545 jsr166 1.40 * {@code null} if this deque is empty
546 dl 1.1 */
547 jsr166 1.9 public E poll() {
548     return pollFirst();
549 dl 1.1 }
550    
551     /**
552     * Retrieves, but does not remove, the head of the queue represented by
553 jsr166 1.15 * this deque. This method differs from {@link #peek peek} only in
554     * that it throws an exception if this deque is empty.
555 dl 1.1 *
556 jsr166 1.8 * <p>This method is equivalent to {@link #getFirst}.
557 dl 1.1 *
558     * @return the head of the queue represented by this deque
559 jsr166 1.9 * @throws NoSuchElementException {@inheritDoc}
560 dl 1.1 */
561     public E element() {
562     return getFirst();
563     }
564    
565 jsr166 1.9 /**
566     * Retrieves, but does not remove, the head of the queue represented by
567 jsr166 1.40 * this deque, or returns {@code null} if this deque is empty.
568 jsr166 1.9 *
569     * <p>This method is equivalent to {@link #peekFirst}.
570     *
571     * @return the head of the queue represented by this deque, or
572 jsr166 1.40 * {@code null} if this deque is empty
573 jsr166 1.9 */
574     public E peek() {
575     return peekFirst();
576     }
577    
578 dl 1.1 // *** Stack methods ***
579    
580     /**
581     * Pushes an element onto the stack represented by this deque. In other
582 dl 1.5 * words, inserts the element at the front of this deque.
583 dl 1.1 *
584     * <p>This method is equivalent to {@link #addFirst}.
585     *
586     * @param e the element to push
587 jsr166 1.9 * @throws NullPointerException if the specified element is null
588 dl 1.1 */
589     public void push(E e) {
590     addFirst(e);
591     }
592    
593     /**
594     * Pops an element from the stack represented by this deque. In other
595 dl 1.2 * words, removes and returns the first element of this deque.
596 dl 1.1 *
597     * <p>This method is equivalent to {@link #removeFirst()}.
598     *
599     * @return the element at the front of this deque (which is the top
600 jsr166 1.9 * of the stack represented by this deque)
601     * @throws NoSuchElementException {@inheritDoc}
602 dl 1.1 */
603     public E pop() {
604     return removeFirst();
605     }
606    
607     /**
608 jsr166 1.75 * Removes the element at the specified position in the elements array.
609     * This can result in forward or backwards motion of array elements.
610     * We optimize for least element motion.
611 dl 1.1 *
612 dl 1.5 * <p>This method is called delete rather than remove to emphasize
613 jsr166 1.9 * that its semantics differ from those of {@link List#remove(int)}.
614 dl 1.5 *
615 dl 1.1 * @return true if elements moved backwards
616     */
617 jsr166 1.71 boolean delete(int i) {
618 jsr166 1.75 // checkInvariants();
619 jsr166 1.34 final Object[] elements = this.elements;
620 jsr166 1.75 final int capacity = elements.length;
621 jsr166 1.30 final int h = head;
622 jsr166 1.75 int front; // number of elements before to-be-deleted elt
623     if ((front = i - h) < 0) front += capacity;
624     final int back = size - front - 1; // number of elements after
625 jsr166 1.30 if (front < back) {
626 jsr166 1.75 // move front elements forwards
627 jsr166 1.30 if (h <= i) {
628     System.arraycopy(elements, h, elements, h + 1, front);
629     } else { // Wrap around
630     System.arraycopy(elements, 0, elements, 1, i);
631 jsr166 1.75 elements[0] = elements[capacity - 1];
632     System.arraycopy(elements, h, elements, h + 1, front - (i + 1));
633 jsr166 1.30 }
634     elements[h] = null;
635 jsr166 1.75 head = inc(h, capacity);
636     size--;
637     // checkInvariants();
638 jsr166 1.30 return false;
639     } else {
640 jsr166 1.75 // move back elements backwards
641     int tail = tail();
642     if (i <= tail) {
643 jsr166 1.30 System.arraycopy(elements, i + 1, elements, i, back);
644     } else { // Wrap around
645 jsr166 1.75 int firstLeg = capacity - (i + 1);
646     System.arraycopy(elements, i + 1, elements, i, firstLeg);
647     elements[capacity - 1] = elements[0];
648     System.arraycopy(elements, 1, elements, 0, back - firstLeg - 1);
649 jsr166 1.30 }
650 jsr166 1.75 elements[tail] = null;
651     size--;
652     // checkInvariants();
653 jsr166 1.30 return true;
654     }
655 dl 1.23 }
656    
657 dl 1.1 // *** Collection Methods ***
658    
659     /**
660     * Returns the number of elements in this deque.
661     *
662     * @return the number of elements in this deque
663     */
664     public int size() {
665 jsr166 1.75 return size;
666 dl 1.1 }
667    
668     /**
669 jsr166 1.40 * Returns {@code true} if this deque contains no elements.
670 dl 1.1 *
671 jsr166 1.40 * @return {@code true} if this deque contains no elements
672 dl 1.1 */
673     public boolean isEmpty() {
674 jsr166 1.75 return size == 0;
675 dl 1.1 }
676    
677     /**
678     * Returns an iterator over the elements in this deque. The elements
679     * will be ordered from first (head) to last (tail). This is the same
680     * order that elements would be dequeued (via successive calls to
681     * {@link #remove} or popped (via successive calls to {@link #pop}).
682 dl 1.5 *
683 jsr166 1.18 * @return an iterator over the elements in this deque
684 dl 1.1 */
685     public Iterator<E> iterator() {
686     return new DeqIterator();
687     }
688    
689 dl 1.16 public Iterator<E> descendingIterator() {
690     return new DescendingIterator();
691     }
692    
693 dl 1.1 private class DeqIterator implements Iterator<E> {
694 jsr166 1.75 /** Index of element to be returned by subsequent call to next. */
695     int cursor;
696 dl 1.1
697 jsr166 1.75 /** Number of elements yet to be returned. */
698     int remaining = size;
699 dl 1.1
700     /**
701     * Index of element returned by most recent call to next.
702     * Reset to -1 if element is deleted by a call to remove.
703     */
704 jsr166 1.75 int lastRet = -1;
705 dl 1.1
706 jsr166 1.75 DeqIterator() { cursor = head; }
707    
708     public final boolean hasNext() {
709     return remaining > 0;
710     }
711    
712 jsr166 1.81 public E next() {
713 jsr166 1.75 if (remaining == 0)
714 dl 1.1 throw new NoSuchElementException();
715 jsr166 1.75 E e = checkedElementAt(elements, cursor);
716 dl 1.1 lastRet = cursor;
717 jsr166 1.81 cursor = inc(cursor, elements.length);
718 jsr166 1.75 remaining--;
719     return e;
720 dl 1.1 }
721    
722 jsr166 1.81 void postDelete(boolean leftShifted) {
723     if (leftShifted)
724     cursor = dec(cursor, elements.length); // undo inc in next
725     }
726    
727 jsr166 1.75 public final void remove() {
728 dl 1.1 if (lastRet < 0)
729     throw new IllegalStateException();
730 jsr166 1.81 postDelete(delete(lastRet));
731 dl 1.1 lastRet = -1;
732     }
733 jsr166 1.68
734 jsr166 1.81 public void forEachRemaining(Consumer<? super E> action) {
735 jsr166 1.68 Objects.requireNonNull(action);
736 jsr166 1.75 final Object[] elements = ArrayDeque.this.elements;
737     final int capacity = elements.length;
738 jsr166 1.77 int k = remaining;
739     remaining = 0;
740 jsr166 1.81 for (int i = cursor; --k >= 0; i = inc(i, capacity))
741 jsr166 1.77 action.accept(checkedElementAt(elements, i));
742 jsr166 1.68 }
743 dl 1.1 }
744    
745 jsr166 1.75 private class DescendingIterator extends DeqIterator {
746     DescendingIterator() { cursor = tail(); }
747    
748 jsr166 1.81 public final E next() {
749     if (remaining == 0)
750     throw new NoSuchElementException();
751     E e = checkedElementAt(elements, cursor);
752     lastRet = cursor;
753     cursor = dec(cursor, elements.length);
754     remaining--;
755     return e;
756 jsr166 1.75 }
757    
758 jsr166 1.81 void postDelete(boolean leftShifted) {
759     if (!leftShifted)
760     cursor = inc(cursor, elements.length); // undo dec in next
761     }
762    
763     public final void forEachRemaining(Consumer<? super E> action) {
764     Objects.requireNonNull(action);
765     final Object[] elements = ArrayDeque.this.elements;
766     final int capacity = elements.length;
767     int k = remaining;
768     remaining = 0;
769     for (int i = cursor; --k >= 0; i = dec(i, capacity))
770     action.accept(checkedElementAt(elements, i));
771 jsr166 1.75 }
772     }
773    
774 jsr166 1.52 /**
775 jsr166 1.75 * Creates a <em><a href="Spliterator.html#binding">late-binding</a></em>
776     * and <em>fail-fast</em> {@link Spliterator} over the elements in this
777     * deque.
778     *
779     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED},
780     * {@link Spliterator#SUBSIZED}, {@link Spliterator#ORDERED}, and
781     * {@link Spliterator#NONNULL}. Overriding implementations should document
782     * the reporting of additional characteristic values.
783     *
784     * @return a {@code Spliterator} over the elements in this deque
785     * @since 1.8
786 jsr166 1.52 */
787 jsr166 1.75 public Spliterator<E> spliterator() {
788 jsr166 1.76 return new ArrayDequeSpliterator();
789 jsr166 1.75 }
790    
791     final class ArrayDequeSpliterator implements Spliterator<E> {
792     private int cursor;
793 jsr166 1.76 private int remaining; // -1 until late-binding first use
794 jsr166 1.75
795 jsr166 1.76 /** Constructs late-binding spliterator over all elements. */
796     ArrayDequeSpliterator() {
797     this.remaining = -1;
798     }
799    
800     /** Constructs spliterator over the given slice. */
801 jsr166 1.75 ArrayDequeSpliterator(int cursor, int count) {
802     this.cursor = cursor;
803     this.remaining = count;
804     }
805    
806 jsr166 1.76 /** Ensures late-binding initialization; then returns remaining. */
807     private int remaining() {
808     if (remaining < 0) {
809     cursor = head;
810     remaining = size;
811     }
812     return remaining;
813     }
814    
815 jsr166 1.75 public ArrayDequeSpliterator trySplit() {
816 jsr166 1.77 final int mid;
817     if ((mid = remaining() >> 1) > 0) {
818 jsr166 1.75 int oldCursor = cursor;
819 jsr166 1.76 cursor = add(cursor, mid, elements.length);
820 jsr166 1.75 remaining -= mid;
821     return new ArrayDequeSpliterator(oldCursor, mid);
822     }
823     return null;
824     }
825 dl 1.16
826 jsr166 1.75 public void forEachRemaining(Consumer<? super E> action) {
827     Objects.requireNonNull(action);
828     final Object[] elements = ArrayDeque.this.elements;
829     final int capacity = elements.length;
830 jsr166 1.77 int k = remaining();
831     remaining = 0;
832     for (int i = cursor; --k >= 0; i = inc(i, capacity))
833     action.accept(checkedElementAt(elements, i));
834 dl 1.16 }
835    
836 jsr166 1.75 public boolean tryAdvance(Consumer<? super E> action) {
837     Objects.requireNonNull(action);
838 jsr166 1.76 if (remaining() == 0)
839 jsr166 1.75 return false;
840     action.accept(checkedElementAt(elements, cursor));
841     cursor = inc(cursor, elements.length);
842     remaining--;
843     return true;
844     }
845    
846     public long estimateSize() {
847 jsr166 1.76 return remaining();
848 jsr166 1.75 }
849    
850     public int characteristics() {
851     return Spliterator.NONNULL
852     | Spliterator.ORDERED
853     | Spliterator.SIZED
854     | Spliterator.SUBSIZED;
855 dl 1.16 }
856 jsr166 1.75 }
857 dl 1.16
858 jsr166 1.75 @Override
859     public void forEach(Consumer<? super E> action) {
860     // checkInvariants();
861     Objects.requireNonNull(action);
862     final Object[] elements = this.elements;
863     final int capacity = elements.length;
864     for (int k = size, i = head; --k >= 0; i = inc(i, capacity))
865     action.accept(elementAt(i));
866     // checkInvariants();
867     }
868    
869     /**
870     * Replaces each element of this deque with the result of applying the
871     * operator to that element, as specified by {@link List#replaceAll}.
872     *
873     * @param operator the operator to apply to each element
874 jsr166 1.80 * @since TBD
875 jsr166 1.75 */
876 jsr166 1.80 /* public */ void replaceAll(UnaryOperator<E> operator) {
877 jsr166 1.75 Objects.requireNonNull(operator);
878     final Object[] elements = this.elements;
879     final int capacity = elements.length;
880     for (int k = size, i = head; --k >= 0; i = inc(i, capacity))
881     elements[i] = operator.apply(elementAt(i));
882     // checkInvariants();
883     }
884    
885     /**
886     * @throws NullPointerException {@inheritDoc}
887     */
888     @Override
889     public boolean removeIf(Predicate<? super E> filter) {
890     Objects.requireNonNull(filter);
891     return bulkRemove(filter);
892     }
893    
894     /**
895     * @throws NullPointerException {@inheritDoc}
896     */
897     @Override
898     public boolean removeAll(Collection<?> c) {
899     Objects.requireNonNull(c);
900     return bulkRemove(e -> c.contains(e));
901     }
902    
903     /**
904     * @throws NullPointerException {@inheritDoc}
905     */
906     @Override
907     public boolean retainAll(Collection<?> c) {
908     Objects.requireNonNull(c);
909     return bulkRemove(e -> !c.contains(e));
910     }
911    
912     /** Implementation of bulk remove methods. */
913     private boolean bulkRemove(Predicate<? super E> filter) {
914     // checkInvariants();
915     final Object[] elements = this.elements;
916     final int capacity = elements.length;
917     int i = head, j = i, remaining = size, deleted = 0;
918     try {
919     for (; remaining > 0; remaining--, i = inc(i, capacity)) {
920     @SuppressWarnings("unchecked") E e = (E) elements[i];
921     if (filter.test(e))
922     deleted++;
923     else {
924     if (j != i)
925     elements[j] = e;
926     j = inc(j, capacity);
927     }
928 jsr166 1.30 }
929 jsr166 1.75 return deleted > 0;
930     } catch (Throwable ex) {
931 jsr166 1.78 if (deleted > 0)
932     for (; remaining > 0;
933     remaining--, i = inc(i, capacity), j = inc(j, capacity))
934     elements[j] = elements[i];
935 jsr166 1.75 throw ex;
936     } finally {
937     size -= deleted;
938     for (; --deleted >= 0; j = inc(j, capacity))
939     elements[j] = null;
940     // checkInvariants();
941 dl 1.16 }
942     }
943    
944 dl 1.1 /**
945 jsr166 1.40 * Returns {@code true} if this deque contains the specified element.
946     * More formally, returns {@code true} if and only if this deque contains
947     * at least one element {@code e} such that {@code o.equals(e)}.
948 dl 1.1 *
949     * @param o object to be checked for containment in this deque
950 jsr166 1.40 * @return {@code true} if this deque contains the specified element
951 dl 1.1 */
952     public boolean contains(Object o) {
953 jsr166 1.58 if (o != null) {
954 jsr166 1.75 final Object[] elements = this.elements;
955     final int capacity = elements.length;
956     for (int k = size, i = head; --k >= 0; i = inc(i, capacity))
957     if (o.equals(elements[i]))
958 jsr166 1.58 return true;
959 dl 1.1 }
960     return false;
961     }
962    
963     /**
964     * Removes a single instance of the specified element from this deque.
965 jsr166 1.9 * If the deque does not contain the element, it is unchanged.
966 jsr166 1.40 * More formally, removes the first element {@code e} such that
967     * {@code o.equals(e)} (if such an element exists).
968     * Returns {@code true} if this deque contained the specified element
969 jsr166 1.12 * (or equivalently, if this deque changed as a result of the call).
970 jsr166 1.9 *
971 jsr166 1.46 * <p>This method is equivalent to {@link #removeFirstOccurrence(Object)}.
972 dl 1.1 *
973 jsr166 1.9 * @param o element to be removed from this deque, if present
974 jsr166 1.40 * @return {@code true} if this deque contained the specified element
975 dl 1.1 */
976 jsr166 1.9 public boolean remove(Object o) {
977     return removeFirstOccurrence(o);
978 dl 1.1 }
979    
980     /**
981     * Removes all of the elements from this deque.
982 jsr166 1.7 * The deque will be empty after this call returns.
983 dl 1.1 */
984     public void clear() {
985 jsr166 1.75 final Object[] elements = this.elements;
986     final int capacity = elements.length;
987     final int h = this.head;
988     final int s = size;
989     if (capacity - h >= s)
990     Arrays.fill(elements, h, h + s, null);
991     else {
992     Arrays.fill(elements, h, capacity, null);
993     Arrays.fill(elements, 0, s - capacity + h, null);
994 dl 1.1 }
995 jsr166 1.75 size = head = 0;
996     // checkInvariants();
997 dl 1.1 }
998    
999     /**
1000 dl 1.5 * Returns an array containing all of the elements in this deque
1001 jsr166 1.10 * in proper sequence (from first to last element).
1002 dl 1.1 *
1003 jsr166 1.10 * <p>The returned array will be "safe" in that no references to it are
1004     * maintained by this deque. (In other words, this method must allocate
1005     * a new array). The caller is thus free to modify the returned array.
1006 jsr166 1.13 *
1007 jsr166 1.11 * <p>This method acts as bridge between array-based and collection-based
1008     * APIs.
1009     *
1010 dl 1.5 * @return an array containing all of the elements in this deque
1011 dl 1.1 */
1012     public Object[] toArray() {
1013 jsr166 1.50 final int head = this.head;
1014 jsr166 1.75 final int firstLeg;
1015     Object[] a = Arrays.copyOfRange(elements, head, head + size);
1016     if ((firstLeg = elements.length - head) < size)
1017     System.arraycopy(elements, 0, a, firstLeg, size - firstLeg);
1018 jsr166 1.50 return a;
1019 dl 1.1 }
1020    
1021     /**
1022 jsr166 1.10 * Returns an array containing all of the elements in this deque in
1023     * proper sequence (from first to last element); the runtime type of the
1024     * returned array is that of the specified array. If the deque fits in
1025     * the specified array, it is returned therein. Otherwise, a new array
1026     * is allocated with the runtime type of the specified array and the
1027     * size of this deque.
1028     *
1029     * <p>If this deque fits in the specified array with room to spare
1030     * (i.e., the array has more elements than this deque), the element in
1031     * the array immediately following the end of the deque is set to
1032 jsr166 1.40 * {@code null}.
1033 jsr166 1.10 *
1034     * <p>Like the {@link #toArray()} method, this method acts as bridge between
1035     * array-based and collection-based APIs. Further, this method allows
1036     * precise control over the runtime type of the output array, and may,
1037     * under certain circumstances, be used to save allocation costs.
1038     *
1039 jsr166 1.40 * <p>Suppose {@code x} is a deque known to contain only strings.
1040 jsr166 1.10 * The following code can be used to dump the deque into a newly
1041 jsr166 1.40 * allocated array of {@code String}:
1042 jsr166 1.10 *
1043 jsr166 1.63 * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
1044 jsr166 1.10 *
1045 jsr166 1.40 * Note that {@code toArray(new Object[0])} is identical in function to
1046     * {@code toArray()}.
1047 dl 1.1 *
1048     * @param a the array into which the elements of the deque are to
1049 jsr166 1.9 * be stored, if it is big enough; otherwise, a new array of the
1050     * same runtime type is allocated for this purpose
1051 jsr166 1.10 * @return an array containing all of the elements in this deque
1052     * @throws ArrayStoreException if the runtime type of the specified array
1053     * is not a supertype of the runtime type of every element in
1054     * this deque
1055     * @throws NullPointerException if the specified array is null
1056 dl 1.1 */
1057 jsr166 1.34 @SuppressWarnings("unchecked")
1058 dl 1.1 public <T> T[] toArray(T[] a) {
1059 jsr166 1.75 final Object[] elements = this.elements;
1060 jsr166 1.50 final int head = this.head;
1061 jsr166 1.75 final int firstLeg;
1062     boolean wrap = (firstLeg = elements.length - head) < size;
1063     if (size > a.length) {
1064 jsr166 1.50 a = (T[]) Arrays.copyOfRange(elements, head, head + size,
1065     a.getClass());
1066     } else {
1067 jsr166 1.75 System.arraycopy(elements, head, a, 0, wrap ? firstLeg : size);
1068     if (size < a.length)
1069 jsr166 1.50 a[size] = null;
1070     }
1071     if (wrap)
1072 jsr166 1.75 System.arraycopy(elements, 0, a, firstLeg, size - firstLeg);
1073 dl 1.1 return a;
1074     }
1075    
1076     // *** Object methods ***
1077    
1078     /**
1079     * Returns a copy of this deque.
1080     *
1081     * @return a copy of this deque
1082     */
1083     public ArrayDeque<E> clone() {
1084 dl 1.5 try {
1085 jsr166 1.34 @SuppressWarnings("unchecked")
1086 dl 1.1 ArrayDeque<E> result = (ArrayDeque<E>) super.clone();
1087 jsr166 1.28 result.elements = Arrays.copyOf(elements, elements.length);
1088 dl 1.1 return result;
1089 dl 1.5 } catch (CloneNotSupportedException e) {
1090 dl 1.1 throw new AssertionError();
1091     }
1092     }
1093    
1094     private static final long serialVersionUID = 2340985798034038923L;
1095    
1096     /**
1097 jsr166 1.38 * Saves this deque to a stream (that is, serializes it).
1098 dl 1.1 *
1099 jsr166 1.56 * @param s the stream
1100 jsr166 1.57 * @throws java.io.IOException if an I/O error occurs
1101 jsr166 1.40 * @serialData The current size ({@code int}) of the deque,
1102 dl 1.1 * followed by all of its elements (each an object reference) in
1103     * first-to-last order.
1104     */
1105 jsr166 1.32 private void writeObject(java.io.ObjectOutputStream s)
1106     throws java.io.IOException {
1107 dl 1.1 s.defaultWriteObject();
1108    
1109     // Write out size
1110 jsr166 1.75 s.writeInt(size);
1111 dl 1.1
1112     // Write out elements in order.
1113 jsr166 1.75 final Object[] elements = this.elements;
1114     final int capacity = elements.length;
1115     for (int k = size, i = head; --k >= 0; i = inc(i, capacity))
1116 dl 1.1 s.writeObject(elements[i]);
1117     }
1118    
1119     /**
1120 jsr166 1.38 * Reconstitutes this deque from a stream (that is, deserializes it).
1121 jsr166 1.56 * @param s the stream
1122 jsr166 1.57 * @throws ClassNotFoundException if the class of a serialized object
1123     * could not be found
1124     * @throws java.io.IOException if an I/O error occurs
1125 dl 1.1 */
1126 jsr166 1.32 private void readObject(java.io.ObjectInputStream s)
1127     throws java.io.IOException, ClassNotFoundException {
1128 dl 1.1 s.defaultReadObject();
1129    
1130     // Read in size and allocate array
1131 jsr166 1.75 elements = new Object[size = s.readInt()];
1132 dl 1.1
1133     // Read in all elements in the proper order.
1134     for (int i = 0; i < size; i++)
1135 jsr166 1.34 elements[i] = s.readObject();
1136 dl 1.1 }
1137 dl 1.41
1138 jsr166 1.75 /** debugging */
1139     private void checkInvariants() {
1140     try {
1141     int capacity = elements.length;
1142     assert size >= 0 && size <= capacity;
1143     assert head >= 0 && ((capacity == 0 && head == 0 && size == 0)
1144     || head < capacity);
1145     assert size == 0
1146     || (elements[head] != null && elements[tail()] != null);
1147     assert size == capacity
1148     || (elements[dec(head, capacity)] == null
1149     && elements[inc(tail(), capacity)] == null);
1150     } catch (Throwable t) {
1151     System.err.printf("head=%d size=%d capacity=%d%n",
1152     head, size, elements.length);
1153     System.err.printf("elements=%s%n",
1154     Arrays.toString(elements));
1155     throw t;
1156 dl 1.41 }
1157     }
1158    
1159 dl 1.1 }