Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HOT(Heap On Top) Queues

Tags:

c++

Could anyone point me to an example implementation of a HOT Queue or give some pointers on how to approach implementing one?

like image 646
celavek Avatar asked Jan 28 '09 14:01

celavek


Video Answer


1 Answers

Here is a page I found that provides at least a clue toward what data structures you might use to implement this. Scroll down to the section called "Making A* Scalable." It's unfortunate that the academic papers on the subject mention having written C++ code but don't provide any.

like image 76
Michael Kristofik Avatar answered Sep 23 '22 18:09

Michael Kristofik