src/java.base/share/classes/java/util/PriorityQueue.java
author darcy
Wed, 09 Oct 2019 10:17:50 -0700
changeset 58520 e036ee8bae56
parent 57956 e0b8b019d2f5
child 58679 9c3209ff7550
permissions -rw-r--r--
8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes Reviewed-by: rriggs, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54971
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
     2
 * Copyright (c) 2003, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5467
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5467
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5467
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5467
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 5467
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.util;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
    28
import java.util.function.Consumer;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
    29
import java.util.function.Predicate;
52427
3c6aa484536c 8211122: Reduce the number of internal classes made accessible to jdk.unsupported
mchung
parents: 50229
diff changeset
    30
import jdk.internal.access.SharedSecrets;
54971
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
    31
import jdk.internal.util.ArraysSupport;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
    32
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * An unbounded priority {@linkplain Queue queue} based on a priority heap.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * The elements of the priority queue are ordered according to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * {@linkplain Comparable natural ordering}, or by a {@link Comparator}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * provided at queue construction time, depending on which constructor is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * used.  A priority queue does not permit {@code null} elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * A priority queue relying on natural ordering also does not permit
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * insertion of non-comparable objects (doing so may result in
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * {@code ClassCastException}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * <p>The <em>head</em> of this queue is the <em>least</em> element
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * with respect to the specified ordering.  If multiple elements are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * tied for least value, the head is one of those elements -- ties are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * broken arbitrarily.  The queue retrieval operations {@code poll},
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * {@code remove}, {@code peek}, and {@code element} access the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * element at the head of the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * <p>A priority queue is unbounded, but has an internal
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * <i>capacity</i> governing the size of an array used to store the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * elements on the queue.  It is always at least as large as the queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * size.  As elements are added to a priority queue, its capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * grows automatically.  The details of the growth policy are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * specified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * <p>This class and its iterator implement all of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * <em>optional</em> methods of the {@link Collection} and {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * Iterator} interfaces.  The Iterator provided in method {@link
42226
f55cb692058f 8132964: Spliterator documentation on Priority(Blocking)Queue
psandoz
parents: 40817
diff changeset
    60
 * #iterator()} and the Spliterator provided in method {@link #spliterator()}
f55cb692058f 8132964: Spliterator documentation on Priority(Blocking)Queue
psandoz
parents: 40817
diff changeset
    61
 * are <em>not</em> guaranteed to traverse the elements of
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * the priority queue in any particular order. If you need ordered
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 * traversal, consider using {@code Arrays.sort(pq.toArray())}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 *
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
    65
 * <p><strong>Note that this implementation is not synchronized.</strong>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * Multiple threads should not access a {@code PriorityQueue}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * instance concurrently if any of the threads modifies the queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 * Instead, use the thread-safe {@link
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
 * java.util.concurrent.PriorityBlockingQueue} class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
 * <p>Implementation note: this implementation provides
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 19435
diff changeset
    72
 * O(log(n)) time for the enqueuing and dequeuing methods
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
 * ({@code offer}, {@code poll}, {@code remove()} and {@code add});
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
 * linear time for the {@code remove(Object)} and {@code contains(Object)}
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
 * methods; and constant time for the retrieval methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
 * ({@code peek}, {@code element}, and {@code size}).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
 * <p>This class is a member of the
49433
b6671a111395 8199465: {@docRoot} references need to be updated to reflect new module/package structure
jjg
parents: 47423
diff changeset
    79
 * <a href="{@docRoot}/java.base/java/util/package-summary.html#CollectionsFramework">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
 * Java Collections Framework</a>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
 * @since 1.5
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
 * @author Josh Bloch, Doug Lea
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
    84
 * @param <E> the type of elements held in this queue
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
 */
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
    86
@SuppressWarnings("unchecked")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
public class PriorityQueue<E> extends AbstractQueue<E>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    implements java.io.Serializable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 54971
diff changeset
    90
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private static final long serialVersionUID = -7720805057305804111L;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    private static final int DEFAULT_INITIAL_CAPACITY = 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * Priority queue represented as a balanced binary heap: the two
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * children of queue[n] are queue[2*n+1] and queue[2*(n+1)].  The
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * priority queue is ordered by comparator, or by the elements'
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * natural ordering, if comparator is null: For each node n in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * heap and each descendant d of n, n <= d.  The element with the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * lowest value is in queue[0], assuming the queue is nonempty.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     */
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   103
    transient Object[] queue; // non-private to simplify nested class access
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
     * The number of elements in the priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
     */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   108
    int size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * The comparator, or null if priority queue uses elements'
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * natural ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
58520
e036ee8bae56 8231202: Suppress warnings on non-serializable non-transient instance fields in serializable classes
darcy
parents: 57956
diff changeset
   114
    @SuppressWarnings("serial") // Conditionally serializable
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    private final Comparator<? super E> comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * The number of times this priority queue has been
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * <i>structurally modified</i>.  See AbstractList for gory details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   121
    transient int modCount;     // non-private to simplify nested class access
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     * Creates a {@code PriorityQueue} with the default initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * capacity (11) that orders its elements according to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * {@linkplain Comparable natural ordering}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    public PriorityQueue() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        this(DEFAULT_INITIAL_CAPACITY, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     * Creates a {@code PriorityQueue} with the specified initial
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * capacity that orders its elements according to their
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * {@linkplain Comparable natural ordering}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
     * @param initialCapacity the initial capacity for this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * @throws IllegalArgumentException if {@code initialCapacity} is less
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     *         than 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    public PriorityQueue(int initialCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        this(initialCapacity, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    /**
19059
510ac28edfef 8021601: Add unit test for PriorityQueue(Comparator) constructor
mduigou
parents: 19037
diff changeset
   146
     * Creates a {@code PriorityQueue} with the default initial capacity and
510ac28edfef 8021601: Add unit test for PriorityQueue(Comparator) constructor
mduigou
parents: 19037
diff changeset
   147
     * whose elements are ordered according to the specified comparator.
19037
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   148
     *
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   149
     * @param  comparator the comparator that will be used to order this
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   150
     *         priority queue.  If {@code null}, the {@linkplain Comparable
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   151
     *         natural ordering} of the elements will be used.
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   152
     * @since 1.8
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   153
     */
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   154
    public PriorityQueue(Comparator<? super E> comparator) {
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   155
        this(DEFAULT_INITIAL_CAPACITY, comparator);
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   156
    }
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   157
18aee3cc498f 6799426: Adds constructor PriorityQueue(Comparator)
mduigou
parents: 17168
diff changeset
   158
    /**
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * Creates a {@code PriorityQueue} with the specified initial capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * that orders its elements according to the specified comparator.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * @param  initialCapacity the initial capacity for this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * @param  comparator the comparator that will be used to order this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     *         priority queue.  If {@code null}, the {@linkplain Comparable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     *         natural ordering} of the elements will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * @throws IllegalArgumentException if {@code initialCapacity} is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     *         less than 1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public PriorityQueue(int initialCapacity,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                         Comparator<? super E> comparator) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        // Note: This restriction of at least one is not actually needed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
        // but continues for 1.5 compatibility
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        if (initialCapacity < 1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            throw new IllegalArgumentException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        this.queue = new Object[initialCapacity];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        this.comparator = comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     * Creates a {@code PriorityQueue} containing the elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
     * specified collection.  If the specified collection is an instance of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
     * a {@link SortedSet} or is another {@code PriorityQueue}, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
     * priority queue will be ordered according to the same ordering.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Otherwise, this priority queue will be ordered according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * {@linkplain Comparable natural ordering} of its elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
     * @param  c the collection whose elements are to be placed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
     *         into this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
     * @throws ClassCastException if elements of the specified collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
     *         cannot be compared to one another according to the priority
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     *         queue's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * @throws NullPointerException if the specified collection or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public PriorityQueue(Collection<? extends E> c) {
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   196
        if (c instanceof SortedSet<?>) {
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   197
            SortedSet<? extends E> ss = (SortedSet<? extends E>) c;
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   198
            this.comparator = (Comparator<? super E>) ss.comparator();
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   199
            initElementsFromCollection(ss);
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   200
        }
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   201
        else if (c instanceof PriorityQueue<?>) {
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   202
            PriorityQueue<? extends E> pq = (PriorityQueue<? extends E>) c;
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   203
            this.comparator = (Comparator<? super E>) pq.comparator();
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   204
            initFromPriorityQueue(pq);
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   205
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        else {
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   207
            this.comparator = null;
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   208
            initFromCollection(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * Creates a {@code PriorityQueue} containing the elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * specified priority queue.  This priority queue will be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     * ordered according to the same ordering as the given priority
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * @param  c the priority queue whose elements are to be placed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     *         into this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * @throws ClassCastException if elements of {@code c} cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     *         compared to one another according to {@code c}'s
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     *         ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * @throws NullPointerException if the specified priority queue or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
    public PriorityQueue(PriorityQueue<? extends E> c) {
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   227
        this.comparator = (Comparator<? super E>) c.comparator();
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   228
        initFromPriorityQueue(c);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * Creates a {@code PriorityQueue} containing the elements in the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     * specified sorted set.   This priority queue will be ordered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     * according to the same ordering as the given sorted set.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @param  c the sorted set whose elements are to be placed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     *         into this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * @throws ClassCastException if elements of the specified sorted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     *         set cannot be compared to one another according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
     *         sorted set's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * @throws NullPointerException if the specified sorted set or any
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     *         of its elements are null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
    public PriorityQueue(SortedSet<? extends E> c) {
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   245
        this.comparator = (Comparator<? super E>) c.comparator();
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   246
        initElementsFromCollection(c);
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   247
    }
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   248
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   249
    /** Ensures that queue[0] exists, helping peek() and poll(). */
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   250
    private static Object[] ensureNonEmpty(Object[] es) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   251
        return (es.length > 0) ? es : new Object[1];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   252
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   253
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   254
    private void initFromPriorityQueue(PriorityQueue<? extends E> c) {
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   255
        if (c.getClass() == PriorityQueue.class) {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   256
            this.queue = ensureNonEmpty(c.toArray());
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   257
            this.size = c.size();
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   258
        } else {
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   259
            initFromCollection(c);
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   260
        }
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   261
    }
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   262
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   263
    private void initElementsFromCollection(Collection<? extends E> c) {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   264
        Object[] es = c.toArray();
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   265
        int len = es.length;
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   266
        // If c.toArray incorrectly doesn't return Object[], copy it.
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   267
        if (es.getClass() != Object[].class)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   268
            es = Arrays.copyOf(es, len, Object[].class);
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   269
        if (len == 1 || this.comparator != null)
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   270
            for (Object e : es)
22078
bdec5d53e98c 8030851: Update code in java.util to use newer language features
psandoz
parents: 21278
diff changeset
   271
                if (e == null)
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   272
                    throw new NullPointerException();
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   273
        this.queue = ensureNonEmpty(es);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   274
        this.size = len;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
     * Initializes queue array with elements from the given Collection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
     * @param c the collection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
    private void initFromCollection(Collection<? extends E> c) {
5467
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   283
        initElementsFromCollection(c);
0cfa1c70b5ab 6950540: PriorityQueue(collection) should throw NPE if collection contains a null
martin
parents: 5466
diff changeset
   284
        heapify();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
     * Increases the capacity of the array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
     * @param minCapacity the desired minimum capacity
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    private void grow(int minCapacity) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        int oldCapacity = queue.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        // Double size if small; else grow by 50%
54971
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   295
        int newCapacity = ArraysSupport.newLength(oldCapacity,
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   296
                minCapacity - oldCapacity, /* minimum growth */
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   297
                oldCapacity < 64 ? oldCapacity + 2 : oldCapacity >> 1
4285b4d13471 8223593: Refactor code for reallocating storage
igerasim
parents: 52427
diff changeset
   298
                                           /* preferred growth */);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        queue = Arrays.copyOf(queue, newCapacity);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * Inserts the specified element into this priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
     * @return {@code true} (as specified by {@link Collection#add})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
     * @throws ClassCastException if the specified element cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
     *         compared with elements currently in this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     *         according to the priority queue's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
    public boolean add(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        return offer(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * Inserts the specified element into this priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * @return {@code true} (as specified by {@link Queue#offer})
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * @throws ClassCastException if the specified element cannot be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     *         compared with elements currently in this priority queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     *         according to the priority queue's ordering
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     * @throws NullPointerException if the specified element is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    public boolean offer(E e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        if (e == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
            throw new NullPointerException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        int i = size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        if (i >= queue.length)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            grow(i + 1);
39039
9dea20ff2dee 8066070: PriorityQueue corrupted when adding non-Comparable
dl
parents: 32991
diff changeset
   331
        siftUp(i, e);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
        size = i + 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    public E peek() {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   337
        return (E) queue[0];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    private int indexOf(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        if (o != null) {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   342
            final Object[] es = queue;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   343
            for (int i = 0, n = size; i < n; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   344
                if (o.equals(es[i]))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
        return -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Removes a single instance of the specified element from this queue,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * if it is present.  More formally, removes an element {@code e} such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     * that {@code o.equals(e)}, if this queue contains one or more such
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
     * elements.  Returns {@code true} if and only if this queue contained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
     * the specified element (or equivalently, if this queue changed as a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
     * result of the call).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
     * @param o element to be removed from this queue, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
     * @return {@code true} if this queue changed as a result of the call
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    public boolean remove(Object o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
        int i = indexOf(o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        if (i == -1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            removeAt(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    /**
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   372
     * Identity-based version for use in Itr.remove.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * @param o element to be removed from this queue, if present
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     */
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   376
    void removeEq(Object o) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   377
        final Object[] es = queue;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   378
        for (int i = 0, n = size; i < n; i++) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   379
            if (o == es[i]) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
                removeAt(i);
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   381
                break;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * Returns {@code true} if this queue contains the specified element.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * More formally, returns {@code true} if and only if this queue contains
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * at least one element {@code e} such that {@code o.equals(e)}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
     * @param o object to be checked for containment in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
     * @return {@code true} if this queue contains the specified element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    public boolean contains(Object o) {
26451
f86e59f18322 8056951: pico-optimize contains(Object) methods
martin
parents: 25859
diff changeset
   395
        return indexOf(o) >= 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * Returns an array containing all of the elements in this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * The elements are in no particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * <p>The returned array will be "safe" in that no references to it are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     * maintained by this queue.  (In other words, this method must allocate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
     * a new array).  The caller is thus free to modify the returned array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
     * <p>This method acts as bridge between array-based and collection-based
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * APIs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * @return an array containing all of the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
    public Object[] toArray() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
        return Arrays.copyOf(queue, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
     * Returns an array containing all of the elements in this queue; the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
     * runtime type of the returned array is that of the specified array.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
     * The returned array elements are in no particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * If the queue fits in the specified array, it is returned therein.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Otherwise, a new array is allocated with the runtime type of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * specified array and the size of this queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * <p>If the queue fits in the specified array with room to spare
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * (i.e., the array has more elements than the queue), the element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * the array immediately following the end of the collection is set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     * {@code null}.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
     * <p>Like the {@link #toArray()} method, this method acts as bridge between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
     * array-based and collection-based APIs.  Further, this method allows
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
     * precise control over the runtime type of the output array, and may,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
     * under certain circumstances, be used to save allocation costs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
     *
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   433
     * <p>Suppose {@code x} is a queue known to contain only strings.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * The following code can be used to dump the queue into a newly
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   435
     * allocated array of {@code String}:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     *
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   437
     * <pre> {@code String[] y = x.toArray(new String[0]);}</pre>
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
     *
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   439
     * Note that {@code toArray(new Object[0])} is identical in function to
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   440
     * {@code toArray()}.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
     * @param a the array into which the elements of the queue are to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
     *          be stored, if it is big enough; otherwise, a new array of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     *          same runtime type is allocated for this purpose.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * @return an array containing all of the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     * @throws ArrayStoreException if the runtime type of the specified array
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
     *         is not a supertype of the runtime type of every element in
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
     *         this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
     * @throws NullPointerException if the specified array is null
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
    public <T> T[] toArray(T[] a) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   452
        final int size = this.size;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        if (a.length < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
            // Make a new array of a's runtime type, but my contents:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
            return (T[]) Arrays.copyOf(queue, size, a.getClass());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        System.arraycopy(queue, 0, a, 0, size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        if (a.length > size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            a[size] = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        return a;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * Returns an iterator over the elements in this queue. The iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * does not return the elements in any particular order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
     * @return an iterator over the elements in this queue
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
    public Iterator<E> iterator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        return new Itr();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    private final class Itr implements Iterator<E> {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
         * Index (into queue array) of element to be returned by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
         * subsequent call to next.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
         */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   477
        private int cursor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
         * Index of element returned by most recent call to next,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
         * unless that element came from the forgetMeNot list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
         * Set to -1 if element is deleted by a call to remove.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
        private int lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
         * A queue of elements that were moved from the unvisited portion of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
         * the heap into the visited portion as a result of "unlucky" element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
         * removals during the iteration.  (Unlucky element removals are those
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
         * that require a siftup instead of a siftdown.)  We must visit all of
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
         * the elements in this list to complete the iteration.  We do this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
         * after we've completed the "normal" iteration.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
         * We expect that most iterations, even those involving removals,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
         * will not need to store elements in this field.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
         */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   497
        private ArrayDeque<E> forgetMeNot;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
         * Element returned by the most recent call to next iff that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
         * element was drawn from the forgetMeNot list.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
         */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   503
        private E lastRetElt;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
         * The modCount value that the iterator believes that the backing
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
         * Queue should have.  If this expectation is violated, the iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
         * has detected concurrent modification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        private int expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   512
        Itr() {}                        // prevent access constructor creation
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   513
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
        public boolean hasNext() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            return cursor < size ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                (forgetMeNot != null && !forgetMeNot.isEmpty());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        public E next() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            if (expectedModCount != modCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
            if (cursor < size)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
                return (E) queue[lastRet = cursor++];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
            if (forgetMeNot != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                lastRetElt = forgetMeNot.poll();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                if (lastRetElt != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
                    return lastRetElt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            throw new NoSuchElementException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        public void remove() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
            if (expectedModCount != modCount)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
                throw new ConcurrentModificationException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            if (lastRet != -1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
                E moved = PriorityQueue.this.removeAt(lastRet);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
                lastRet = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
                if (moved == null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
                    cursor--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
                else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
                    if (forgetMeNot == null)
7803
56bc97d69d93 6880112: Project Coin: Port JDK core library code to use diamond operator
smarks
parents: 5506
diff changeset
   543
                        forgetMeNot = new ArrayDeque<>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
                    forgetMeNot.add(moved);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
            } else if (lastRetElt != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
                PriorityQueue.this.removeEq(lastRetElt);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                lastRetElt = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
                throw new IllegalStateException();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            expectedModCount = modCount;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    public int size() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
        return size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * Removes all of the elements from this priority queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     * The queue will be empty after this call returns.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    public void clear() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        modCount++;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   566
        final Object[] es = queue;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   567
        for (int i = 0, n = size; i < n; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   568
            es[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        size = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    public E poll() {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   573
        final Object[] es;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   574
        final E result;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   575
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   576
        if ((result = (E) ((es = queue)[0])) != null) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   577
            modCount++;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   578
            final int n;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   579
            final E x = (E) es[(n = --size)];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   580
            es[n] = null;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   581
            if (n > 0) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   582
                final Comparator<? super E> cmp;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   583
                if ((cmp = comparator) == null)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   584
                    siftDownComparable(0, x, es, n);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   585
                else
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   586
                    siftDownUsingComparator(0, x, es, n, cmp);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   587
            }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   588
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
     * Removes the ith element from queue.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
     * Normally this method leaves the elements at up to i-1,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
     * inclusive, untouched.  Under these circumstances, it returns
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
     * null.  Occasionally, in order to maintain the heap invariant,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
     * it must swap a later element of the list with one earlier than
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
     * i.  Under these circumstances, this method returns the element
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
     * that was previously at the end of the list and is now at some
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
     * position before i. This fact is used by iterator.remove so as to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
     * avoid missing traversing elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
     */
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   604
    E removeAt(int i) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   605
        // assert i >= 0 && i < size;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   606
        final Object[] es = queue;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        modCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        int s = --size;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        if (s == i) // removed last element
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   610
            es[i] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        else {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   612
            E moved = (E) es[s];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   613
            es[s] = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
            siftDown(i, moved);
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   615
            if (es[i] == moved) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
                siftUp(i, moved);
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   617
                if (es[i] != moved)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
                    return moved;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     * Inserts item x at position k, maintaining heap invariant by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
     * promoting x up the tree until it is greater than or equal to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
     * its parent, or is the root.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
     *
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   629
     * To simplify and speed up coercions and comparisons, the
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
     * Comparable and Comparator versions are separated into different
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
     * methods that are otherwise identical. (Similarly for siftDown.)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * @param k the position to fill
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * @param x the item to insert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
    private void siftUp(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
        if (comparator != null)
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   638
            siftUpUsingComparator(k, x, queue, comparator);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        else
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   640
            siftUpComparable(k, x, queue);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   643
    private static <T> void siftUpComparable(int k, T x, Object[] es) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   644
        Comparable<? super T> key = (Comparable<? super T>) x;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        while (k > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
            int parent = (k - 1) >>> 1;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   647
            Object e = es[parent];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   648
            if (key.compareTo((T) e) >= 0)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
                break;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   650
            es[k] = e;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
            k = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        }
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   653
        es[k] = key;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   656
    private static <T> void siftUpUsingComparator(
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   657
        int k, T x, Object[] es, Comparator<? super T> cmp) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
        while (k > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            int parent = (k - 1) >>> 1;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   660
            Object e = es[parent];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   661
            if (cmp.compare(x, (T) e) >= 0)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
                break;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   663
            es[k] = e;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
            k = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        }
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   666
        es[k] = x;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
     * Inserts item x at position k, maintaining heap invariant by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
     * demoting x down the tree repeatedly until it is less than or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
     * equal to its children or is a leaf.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
     * @param k the position to fill
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * @param x the item to insert
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    private void siftDown(int k, E x) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        if (comparator != null)
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   679
            siftDownUsingComparator(k, x, queue, size, comparator);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
        else
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   681
            siftDownComparable(k, x, queue, size);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   684
    private static <T> void siftDownComparable(int k, T x, Object[] es, int n) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   685
        // assert n > 0;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   686
        Comparable<? super T> key = (Comparable<? super T>)x;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   687
        int half = n >>> 1;           // loop while a non-leaf
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
        while (k < half) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
            int child = (k << 1) + 1; // assume left child is least
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   690
            Object c = es[child];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
            int right = child + 1;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   692
            if (right < n &&
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   693
                ((Comparable<? super T>) c).compareTo((T) es[right]) > 0)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   694
                c = es[child = right];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   695
            if (key.compareTo((T) c) <= 0)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
                break;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   697
            es[k] = c;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
            k = child;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
        }
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   700
        es[k] = key;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   703
    private static <T> void siftDownUsingComparator(
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   704
        int k, T x, Object[] es, int n, Comparator<? super T> cmp) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   705
        // assert n > 0;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   706
        int half = n >>> 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
        while (k < half) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
            int child = (k << 1) + 1;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   709
            Object c = es[child];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
            int right = child + 1;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   711
            if (right < n && cmp.compare((T) c, (T) es[right]) > 0)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   712
                c = es[child = right];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   713
            if (cmp.compare(x, (T) c) <= 0)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
                break;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   715
            es[k] = c;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
            k = child;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
        }
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   718
        es[k] = x;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
     * Establishes the heap invariant (described above) in the entire tree,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
     * assuming nothing about the order of the elements prior to the call.
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   724
     * This classic algorithm due to Floyd (1964) is known to be O(size).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
    private void heapify() {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   727
        final Object[] es = queue;
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   728
        int n = size, i = (n >>> 1) - 1;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   729
        final Comparator<? super E> cmp;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   730
        if ((cmp = comparator) == null)
43522
f9c6f543c4db 8171886: Miscellaneous changes imported from jsr166 CVS 2017-02
dl
parents: 42927
diff changeset
   731
            for (; i >= 0; i--)
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   732
                siftDownComparable(i, (E) es[i], es, n);
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   733
        else
43522
f9c6f543c4db 8171886: Miscellaneous changes imported from jsr166 CVS 2017-02
dl
parents: 42927
diff changeset
   734
            for (; i >= 0; i--)
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   735
                siftDownUsingComparator(i, (E) es[i], es, n, cmp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
     * Returns the comparator used to order the elements in this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
     * queue, or {@code null} if this queue is sorted according to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
     * the {@linkplain Comparable natural ordering} of its elements.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
     * @return the comparator used to order this queue, or
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
     *         {@code null} if this queue is sorted according to the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
     *         natural ordering of its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    public Comparator<? super E> comparator() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        return comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    /**
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   752
     * Saves this queue to a stream (that is, serializes it).
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
     *
40817
4f5fb115676d 8164169: Miscellaneous changes imported from jsr166 CVS 2016-09
dl
parents: 39039
diff changeset
   754
     * @param s the stream
4f5fb115676d 8164169: Miscellaneous changes imported from jsr166 CVS 2016-09
dl
parents: 39039
diff changeset
   755
     * @throws java.io.IOException if an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
     * @serialData The length of the array backing the instance is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
     *             emitted (int), followed by all of its elements
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     *             (each an {@code Object}) in the proper order.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 54971
diff changeset
   760
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    private void writeObject(java.io.ObjectOutputStream s)
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   762
        throws java.io.IOException {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
        // Write out element count, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
        s.defaultWriteObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
        // Write out array length, for compatibility with 1.5 version
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
        s.writeInt(Math.max(2, size + 1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        // Write out all elements in the "proper order".
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   770
        final Object[] es = queue;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   771
        for (int i = 0, n = size; i < n; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   772
            s.writeObject(es[i]);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
     * Reconstitutes the {@code PriorityQueue} instance from a stream
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
     * (that is, deserializes it).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
     * @param s the stream
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   780
     * @throws ClassNotFoundException if the class of a serialized object
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   781
     *         could not be found
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   782
     * @throws java.io.IOException if an I/O error occurs
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
     */
57956
e0b8b019d2f5 8229997: Apply java.io.Serial annotations in java.base
darcy
parents: 54971
diff changeset
   784
    @java.io.Serial
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    private void readObject(java.io.ObjectInputStream s)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        throws java.io.IOException, ClassNotFoundException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        // Read in size, and any hidden stuff
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        s.defaultReadObject();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        // Read in (and discard) array length
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
        s.readInt();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
47423
4fc2a4a29f3d 8174109: Better queuing priorities
smarks
parents: 47216
diff changeset
   793
        SharedSecrets.getJavaObjectInputStreamAccess().checkArray(s, Object[].class, size);
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   794
        final Object[] es = queue = new Object[Math.max(size, 1)];
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        // Read in all elements.
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   797
        for (int i = 0, n = size; i < n; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   798
            es[i] = s.readObject();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        // Elements are guaranteed to be in "proper order", but the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        // spec has never explained what that might be.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        heapify();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
    }
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   804
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   805
    /**
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   806
     * 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: 19059
diff changeset
   807
     * and <em>fail-fast</em> {@link Spliterator} over the elements in this
42226
f55cb692058f 8132964: Spliterator documentation on Priority(Blocking)Queue
psandoz
parents: 40817
diff changeset
   808
     * queue. The spliterator does not traverse elements in any particular order
f55cb692058f 8132964: Spliterator documentation on Priority(Blocking)Queue
psandoz
parents: 40817
diff changeset
   809
     * (the {@link Spliterator#ORDERED ORDERED} characteristic is not reported).
19435
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   810
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   811
     * <p>The {@code Spliterator} reports {@link Spliterator#SIZED},
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   812
     * {@link Spliterator#SUBSIZED}, and {@link Spliterator#NONNULL}.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   813
     * Overriding implementations should document the reporting of additional
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   814
     * characteristic values.
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   815
     *
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   816
     * @return a {@code Spliterator} over the elements in this queue
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   817
     * @since 1.8
9d7530ff42cb 8014824: Document Spliterator characteristics and binding policy of java util collection impls
psandoz
parents: 19059
diff changeset
   818
     */
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   819
    public final Spliterator<E> spliterator() {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   820
        return new PriorityQueueSpliterator(0, -1, 0);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   821
    }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   822
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   823
    final class PriorityQueueSpliterator implements Spliterator<E> {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   824
        private int index;            // current index, modified on advance/split
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   825
        private int fence;            // -1 until first use
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   826
        private int expectedModCount; // initialized when fence set
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   827
32991
b27c76b82713 8134853: Bulk integration of java.util.concurrent classes
dl
parents: 26451
diff changeset
   828
        /** Creates new spliterator covering the given range. */
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   829
        PriorityQueueSpliterator(int origin, int fence, int expectedModCount) {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   830
            this.index = origin;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   831
            this.fence = fence;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   832
            this.expectedModCount = expectedModCount;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   833
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   834
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   835
        private int getFence() { // initialize fence to size on first use
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   836
            int hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   837
            if ((hi = fence) < 0) {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   838
                expectedModCount = modCount;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   839
                hi = fence = size;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   840
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   841
            return hi;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   842
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   843
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   844
        public PriorityQueueSpliterator trySplit() {
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   845
            int hi = getFence(), lo = index, mid = (lo + hi) >>> 1;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   846
            return (lo >= mid) ? null :
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   847
                new PriorityQueueSpliterator(lo, index = mid, expectedModCount);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   848
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   849
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   850
        public void forEachRemaining(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   851
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   852
                throw new NullPointerException();
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   853
            if (fence < 0) { fence = size; expectedModCount = modCount; }
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   854
            final Object[] es = queue;
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   855
            int i, hi; E e;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   856
            for (i = index, index = hi = fence; i < hi; i++) {
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   857
                if ((e = (E) es[i]) == null)
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   858
                    break;      // must be CME
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   859
                action.accept(e);
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   860
            }
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   861
            if (modCount != expectedModCount)
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   862
                throw new ConcurrentModificationException();
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   863
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   864
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   865
        public boolean tryAdvance(Consumer<? super E> action) {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   866
            if (action == null)
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   867
                throw new NullPointerException();
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   868
            if (fence < 0) { fence = size; expectedModCount = modCount; }
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   869
            int i;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   870
            if ((i = index) < fence) {
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   871
                index = i + 1;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   872
                E e;
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   873
                if ((e = (E) queue[i]) == null
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   874
                    || modCount != expectedModCount)
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   875
                    throw new ConcurrentModificationException();
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   876
                action.accept(e);
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   877
                return true;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   878
            }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   879
            return false;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   880
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   881
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   882
        public long estimateSize() {
42927
1d31e540bfcb 8170484: Miscellaneous changes imported from jsr166 CVS 2016-12
dl
parents: 42226
diff changeset
   883
            return getFence() - index;
17168
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   884
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   885
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   886
        public int characteristics() {
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   887
            return Spliterator.SIZED | Spliterator.SUBSIZED | Spliterator.NONNULL;
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   888
        }
b7d3500f2516 8011426: java.util collection Spliterator implementations
psandoz
parents: 13795
diff changeset
   889
    }
50229
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   890
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   891
    /**
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   892
     * @throws NullPointerException {@inheritDoc}
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   893
     */
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   894
    public boolean removeIf(Predicate<? super E> filter) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   895
        Objects.requireNonNull(filter);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   896
        return bulkRemove(filter);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   897
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   898
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   899
    /**
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   900
     * @throws NullPointerException {@inheritDoc}
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   901
     */
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   902
    public boolean removeAll(Collection<?> c) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   903
        Objects.requireNonNull(c);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   904
        return bulkRemove(e -> c.contains(e));
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   905
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   906
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   907
    /**
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   908
     * @throws NullPointerException {@inheritDoc}
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   909
     */
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   910
    public boolean retainAll(Collection<?> c) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   911
        Objects.requireNonNull(c);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   912
        return bulkRemove(e -> !c.contains(e));
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   913
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   914
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   915
    // A tiny bit set implementation
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   916
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   917
    private static long[] nBits(int n) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   918
        return new long[((n - 1) >> 6) + 1];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   919
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   920
    private static void setBit(long[] bits, int i) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   921
        bits[i >> 6] |= 1L << i;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   922
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   923
    private static boolean isClear(long[] bits, int i) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   924
        return (bits[i >> 6] & (1L << i)) == 0;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   925
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   926
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   927
    /** Implementation of bulk remove methods. */
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   928
    private boolean bulkRemove(Predicate<? super E> filter) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   929
        final int expectedModCount = ++modCount;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   930
        final Object[] es = queue;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   931
        final int end = size;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   932
        int i;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   933
        // Optimize for initial run of survivors
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   934
        for (i = 0; i < end && !filter.test((E) es[i]); i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   935
            ;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   936
        if (i >= end) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   937
            if (modCount != expectedModCount)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   938
                throw new ConcurrentModificationException();
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   939
            return false;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   940
        }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   941
        // Tolerate predicates that reentrantly access the collection for
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   942
        // read (but writers still get CME), so traverse once to find
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   943
        // elements to delete, a second pass to physically expunge.
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   944
        final int beg = i;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   945
        final long[] deathRow = nBits(end - beg);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   946
        deathRow[0] = 1L;   // set bit 0
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   947
        for (i = beg + 1; i < end; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   948
            if (filter.test((E) es[i]))
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   949
                setBit(deathRow, i - beg);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   950
        if (modCount != expectedModCount)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   951
            throw new ConcurrentModificationException();
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   952
        int w = beg;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   953
        for (i = beg; i < end; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   954
            if (isClear(deathRow, i - beg))
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   955
                es[w++] = es[i];
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   956
        for (i = size = w; i < end; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   957
            es[i] = null;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   958
        heapify();
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   959
        return true;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   960
    }
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   961
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   962
    /**
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   963
     * @throws NullPointerException {@inheritDoc}
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   964
     */
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   965
    public void forEach(Consumer<? super E> action) {
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   966
        Objects.requireNonNull(action);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   967
        final int expectedModCount = modCount;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   968
        final Object[] es = queue;
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   969
        for (int i = 0, n = size; i < n; i++)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   970
            action.accept((E) es[i]);
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   971
        if (expectedModCount != modCount)
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   972
            throw new ConcurrentModificationException();
6b29ef846c5c 8201386: Miscellaneous changes imported from jsr166 CVS 2018-05
dl
parents: 49433
diff changeset
   973
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
}