Simple Java PriorityQueue<String> error

不羁岁月 提交于 2019-12-01 02:52:54

问题


All I am doing is add three strings to a Java PriorityQueue and then print them out This is my code:

import java.util.*;
import java.lang.*;

class Main
{
    public static void main (String[] args) throws java.lang.Exception
    {
        PriorityQueue<String> pq=new PriorityQueue<String>();
        pq.add("abc");
        pq.add("ability");
        pq.add("aberdeen");

        String s="ability";
        System.out.println(s.compareTo("aberdeen"));

        System.out.println(pq);
    }
}

And this is the output:

4
[abc, ability, aberdeen]

Shouldn't this be abc, aberdeen, ability instead. since that's the correct alphabetic order?


回答1:


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



回答2:


The queue works properly. Run this code:

PriorityQueue<String> pq=new PriorityQueue<String>();
pq.add("abc");
pq.add("ability");
pq.add("aberdeen");
System.out.println(pq);
for (String s; (s = pq.poll()) != null;) System.out.println(s);

It will print

[abc, ability, aberdeen]
abc
aberdeen
ability

The reason lies with the fact that the priority semantics apply only to the dequeue operation, whereas in other respects the queue is bound only by the contract of the plain java.util.Collection: its iterator is not required to observe any particular order, and specifically, PriorityQueue's iterator happens to observe the insertion order.



来源:https://stackoverflow.com/questions/14552569/simple-java-priorityqueuestring-error

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!