vote up -2 vote down star

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

flag
you mean,heap_pop would return the largest and you want the smallest? – Caspin Sep 2 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 at 22:40
If your struct implements operator<() it will work with heap. – jmucchiello Nov 7 at 1:17

2 Answers

vote up 3 vote down

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

link|flag
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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