How do I get a PriorityQueue to sort on what I want it to sort on?

Added: And is there a difference between the offer and add methods?

link|improve this question

feedback

5 Answers

up vote 53 down vote accepted

Use the constructor overload which takes a Comparator<? super E> comparator and pass in a comparator which compares in the appropriate way for your sort order. If you give an example of how you want to sort, we can provide some sample code to implement the comparator if you're not sure. (It's pretty straightforward though.)

As has been said elsewhere: offer and add are just different interface method implementations. In the JDK source I've got, add calls offer.

Here's an example of a priority queue sorting by string length:

// Test.java
import java.util.Comparator;
import java.util.PriorityQueue;

public class Test
{
    public static void main(String[] args)
    {
        Comparator<String> comparator = new StringLengthComparator();
        PriorityQueue<String> queue = 
            new PriorityQueue<String>(10, comparator);
        queue.add("short");
        queue.add("very long indeed");
        queue.add("medium");
        while (queue.size() != 0)
        {
            System.out.println(queue.remove());
        }
    }
}

// StringLengthComparator.java
import java.util.Comparator;

public class StringLengthComparator implements Comparator<String>
{
    @Override
    public int compare(String x, String y)
    {
        // Assume neither string is null. Real code should
        // probably be more robust
        if (x.length() < y.length())
        {
            return -1;
        }
        if (x.length() > y.length())
        {
            return 1;
        }
        return 0;
    }
}
link|improve this answer
yes please. kind of rusty on Java... =/ – Svish Mar 25 '09 at 19:25
Great example! Thanks =) – Svish Mar 25 '09 at 19:53
Hmm... just noticed... priorityQueue.comparator() "Returns the comparator used to order this collection, or null if this collection is sorted according to its elements natural ordering (using Comparable)." Does that mean I could just implement Comparable on my class as well? – Svish Mar 25 '09 at 19:56
Yes if you implement comparable in your class that would work as well – zpesk Mar 25 '09 at 20:19
You could, yes. I wouldn't do so unless there's a single natural sort order for your class though. If there is, that's the right thing to do :) – Jon Skeet Mar 25 '09 at 20:20
show 4 more comments
feedback

Just pass appropriate Comparator to the constructor:

PriorityQueue(int initialCapacity, Comparator<? super E> comparator)

The only difference between offer and add is the interface they belong to. offer belongs to Queue<E>, whereas add is originally seen in Collection<E> interface. Apart from that both methods do exactly the same thing - insert the specified element into priority queue.

link|improve this answer
Thanks for clearing up offer and add methods =) – Svish Mar 25 '09 at 19:46
2  
Specifically, add() throws an exception if capacity restrictions prevent the item from being added to the queue while offer returns false. Since PriorityQueues do not have a maximum capacity, the difference is moot. – James Mar 25 '09 at 19:58
That is very clear distinction between add() and offer().. And add() was needed to be implemented anyway! – Hiral Jhaveri Feb 2 at 6:08
feedback

no different, as declare in javadoc:

public boolean add(E e) {
    return offer(e);
}
link|improve this answer
feedback

from Queue API:

The offer method inserts an element if possible, otherwise returning false. This differs from the Collection.add method, which can fail to add an element only by throwing an unchecked exception. The offer method is designed for use when failure is a normal, rather than exceptional occurrence, for example, in fixed-capacity (or "bounded") queues.

link|improve this answer
feedback

I was also wondering about print order. Consider this case, for example:

For a priority queue:

PriorityQueue<String> pq3 = new PriorityQueue<String>();

This code:

pq3.offer("a");
pq3.offer("A");

may print differently than:

String[] sa = {"a", "A"}; 
for(String s : sa)   
   pq3.offer(s);

I found the answer from a discussion on another forum, where a user said, "the offer()/add() methods only insert the element into the queue. If you want a predictable order you should use peek/poll which return the head of the queue."

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.