Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need a min-heap implemented as a binary tree. Really fast access to the minimum node and insertion sort.

Is there a good implementation in stl or boost that anyone can point me too?

share|improve this question

3 Answers

up vote 17 down vote accepted

I think std::priority_queue is what you are looking for.

share|improve this answer
Thanks Hank, I forgot to link it :) – David Rodríguez - dribeas Apr 13 '09 at 13:10

See the Standard C++ algorithm make_heap().

share|improve this answer

The STL doesn't have a concept of (binary) trees, but there are methods that facilitate in maintaining heap properties in a dataset, such as std::make_heap, std::sort_heap, std::push_heap et cetera.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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