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