Simple Java PriorityQueue error

From the documentation of PriorityQueue.iterator():

Returns an iterator over the elements in this queue. The iterator does not return the elements in any particular order.

That’s what toString() is using to construct the string representation, as the implementation is inherited from AbstractCollection:

Returns a string representation of this collection. The string representation consists of a list of the collection’s elements in the order they are returned by its iterator, enclosed in square brackets (“[]”). […]

Try dequeuing the results instead, and you’ll get the expected order:

while (pq.size() > 0) {
    System.out.println(pq.poll());
}

Output:

abc
aberdeen
ability

Leave a Comment