I have a priority queue of events, but sometimes the event priorities change, so I'd like to maintain iterators from the event requesters into the heap. If the priority changes, I'd like the heap to be adjusted in log(n) time. I will always have exactly one iterator pointing to each element in the heap.
|
|
|
|
|
|
|
Take a look at Boost's mutable heaps. |
|||
|
|
That sounds like you need more indirection. Store pointer to the events in the priority queue instead. When priority of some element of the queue changes, remove it and reinsert. |
||
|
|
|
|
A warning here is that you end up with unstable event sorting, i.e. ordering of the events with the same priority is undefined (read 'they will be reordered'.) |
||||||||
|
