up vote -1 down vote favorite
share [g+] share [fb]

I need to implement extract min for heap(in c++ if possible), could not get this method from STL heap.

link|improve this question
you mean,heap_pop would return the largest and you want the smallest? – deft_code Sep 2 '09 at 22:47
Yes and I forgot to quote, the element in the heap are not integer, its a struct with value, position and some other pointers. I am thinking STL heap cannot be used directly, Can I? – vasanth Sep 3 '09 at 22:40
If your struct implements operator<() it will work with heap. – jmucchiello Nov 7 '09 at 1:17
feedback

2 Answers

Pass in std::greater<*> to the std::*_heap functions.

link|improve this answer
feedback

Yes and I forgot to quote, the element in the heap are not integer, its a struct with value, position and some other pointers. I am thinking STL heap cannot be used directly, Can I

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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