# HG changeset patch # User Peter Kovacs # Date 1247210122 -7200 # Node ID 7124b2581f7244a6eac484b49856815b30b5a625 # Parent bb3392fe91f2414834e3997316905646a19d6cad Make K a template parameter in KaryHeap (#301) diff -r bb3392fe91f2 -r 7124b2581f72 lemon/kary_heap.h --- a/lemon/kary_heap.h Thu Jul 09 04:07:08 2009 +0200 +++ b/lemon/kary_heap.h Fri Jul 10 09:15:22 2009 +0200 @@ -45,15 +45,20 @@ /// \tparam PR Type of the priorities of the items. /// \tparam IM A read-writable item map with \c int values, used /// internally to handle the cross references. + /// \tparam K The degree of the heap, each node have at most \e K + /// children. The default is 16. Powers of two are suggested to use + /// so that the multiplications and divisions needed to traverse the + /// nodes of the heap could be performed faster. /// \tparam CMP A functor class for comparing the priorities. /// The default is \c std::less. /// ///\sa BinHeap ///\sa FouraryHeap #ifdef DOXYGEN - template + template #else - template > + template > #endif class KaryHeap { public: @@ -86,7 +91,6 @@ std::vector _data; Compare _comp; ItemIntMap &_iim; - int _K; public: /// \brief Constructor. @@ -95,7 +99,7 @@ /// \param map A map that assigns \c int values to the items. /// It is used internally to handle the cross references. /// The assigned value must be \c PRE_HEAP (-1) for each item. - explicit KaryHeap(ItemIntMap &map, int K=32) : _iim(map), _K(K) {} + explicit KaryHeap(ItemIntMap &map) : _iim(map) {} /// \brief Constructor. /// @@ -104,8 +108,8 @@ /// It is used internally to handle the cross references. /// The assigned value must be \c PRE_HEAP (-1) for each item. /// \param comp The function object used for comparing the priorities. - KaryHeap(ItemIntMap &map, const Compare &comp, int K=32) - : _iim(map), _comp(comp), _K(K) {} + KaryHeap(ItemIntMap &map, const Compare &comp) + : _iim(map), _comp(comp) {} /// \brief The number of items stored in the heap. /// @@ -127,8 +131,8 @@ void clear() { _data.clear(); } private: - int parent(int i) { return (i-1)/_K; } - int firstChild(int i) { return _K*i+1; } + int parent(int i) { return (i-1)/K; } + int firstChild(int i) { return K*i+1; } bool less(const Pair &p1, const Pair &p2) const { return _comp(p1.second, p2.second); @@ -136,7 +140,7 @@ int findMin(const int child, const int length) { int min=child, i=1; - while( i<_K && child+i