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?
|
How do I get a Added: And is there a difference between the
| |||
|
feedback
|
|
Use the constructor overload which takes a As has been said elsewhere: Here's an example of a priority queue sorting by string length:
| |||||||||||
feedback
|
|
Just pass appropriate
The only difference between | |||||||||
feedback
|
|
no different, as declare in javadoc:
| |||
|
feedback
|
|
from Queue API:
| ||||
|
feedback
|
|
I was also wondering about print order. Consider this case, for example: For a priority queue:
This code:
may print differently than:
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." | ||||
|
feedback
|