Does Java have an easy way to reevaluate a heap once the priority of an object in a PriorityQueue has changed? I can't find any sign of it in Javadoc, but there has to be a way to do it somehow, right? I'm currently removing the object then re-adding it but that's obviously slower than running update on the heap.
|
1
|
|||
|
|
|
You might need to implement such a heap yourself. You need to have some handle to the position of the item in the heap, and some methods to push the item up or down when its priority has changed. Some years ago I wrote such a heap as part of a school work. Pushing an item up or down is an O(log N) operation. I release the following code as public domain, so you may use it in any way you please. (You might want to improve this class so that instead of the abstract isGreaterOrEqual method the sort order would rely on Java's Comparator and Comparable interfaces, and also would make the class use generics.)
|
|||
|
|
|
|
PriorityQueue has the I'd consider using the Observer pattern so that a contained element can tell the Queue that its priority has changed, and the Queue can then do something like |
||
|
|
|
|
The standard interfaces don't provide an update capability. You have use a custom type that implements this. And you're right; although the big-O complexity of algorithms that use a heap doesn't change when you remove and replace the top of the heap, their actual run time can nearly double. I'd like to see better built-in support for a |
||
|
|
|
Depending on the implementation of the data structure, there may not be a faster way. Most PQ/heap algorithms do not provide an update function. The Java implementation may not be any different. Notice that though a remove/insert makes the code slower, it is unlikely to result in code with a different runtime complexity. Edit: have a look at this thread: http://stackoverflow.com/questions/450180/a-priority-queue-which-allows-efficient-priority-update |
||
|
|
