Priority queue with dynamic item priorities.

Posted by sean on Stack Overflow See other posts from Stack Overflow or by sean
Published on 2010-02-18T11:36:01Z Indexed on 2010/05/06 10:58 UTC
Read the original article Hit count: 216

Filed under:
|
|

I need to implement a priority queue where the priority of an item in the queue can change and the queue adjusts itself so that items are always removed in the correct order. I have some ideas of how I could implement this but I'm sure this is quite a common data structure so I'm hoping I can use an implementation by someone smarter than me as a base.

Can anyone tell me the name of this type of priority queue so I know what to search for or, even better, point me to an implementation?

© Stack Overflow or respective owner

Related posts about algorithm

Related posts about priority-queue