我正在尝试使用 Boost d_ary_heap,但我无法弄清楚如何获取推送元素的句柄。就我而言,我需要在以后的迭代中更新值,所以我需要那个句柄。我可以用斐波那契堆来做到这一点,但在这种情况下,它看起来要复杂得多。
这是我到目前为止所拥有的:
struct compare_cells_d_ary {
inline bool operator()
(const myType * c1 , const myType * c2) const {
return c1->getValue() > c2->getValue(); // I want a min heap.
}
};
class MyHeap {
typedef typename boost::heap::d_ary_heap<const myType *, boost::heap::mutable_<true>, boost::heap::arity<2>, boost::heap::compare<compare_cells_d_ary>>::handle_type handle_t;
protected:
boost::heap::d_ary_heap<const myType *, boost::heap::arity<2>, boost::heap::mutable_<true>, boost::heap::compare<compare_cells_d_ary>> heap_;
std::vector<handle_t> handles_; // I store the handles in an specific order.
public:
/****/
void push (const myType * c) {
handles_[c->getIndex()] = heap_.push(c);
}
/****/
};
push 函数是我在斐波那契堆中使用它的方式,它返回一个句柄类型。但在这种情况下,我无法理解它应该返回什么(http://www.boost.org/doc/libs/1_55_0/doc/html/boost/heap/d_ary_heap.html#idp52218904-bb)
欢迎在推动时如何获得把手的任何帮助!谢谢。