vote up 1 vote down star

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.

flag

3 Answers

vote up 4 vote down check

Take a look at Boost's mutable heaps.

link|flag
Thanks, if I end up having to roll my own, I'll use that snippet to start. – Neil G May 29 at 20:52
ended up going with this solution – Neil G Jun 1 at 7:25
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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'.)

link|flag
1  
You can remove an arbitrary element from a heap in log(n) time. – Neil G May 29 at 20:48
Yes, you're right, was thinking about something else :) – Nikolai N Fetissov May 29 at 21:43
no problem :) – Neil G May 30 at 0:07

Your Answer

Get an OpenID
or

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