Open
Graph Drawing
Framework

 v. 2023.09 (Elderberry)
 

Loading...
Searching...
No Matches
ogdf::BinomialHeap< T, C > Class Template Reference

Binomial heap implementation. More...

#include <ogdf/basic/heap/BinomialHeap.h>

+ Inheritance diagram for ogdf::BinomialHeap< T, C >:

Public Member Functions

 BinomialHeap (const C &cmp=C(), int initialSize=-1)
 Creates empty binomial heap.
 
virtual ~BinomialHeap ()
 Destructs the heap.
 
void decrease (BinomialHeapNode< T > *heapNode, const T &value) override
 Decreases value of the given heapNode to value.
 
void merge (BinomialHeap< T, C > &other) override
 Merges in values of other heap.
 
void pop () override
 Removes the top element from the heap.
 
BinomialHeapNode< T > * push (const T &value) override
 Inserts a new node with given value into a heap.
 
const T & top () const override
 Returns reference to the top element in the heap.
 
const T & value (BinomialHeapNode< T > *heapNode) const override
 Returns the value of the node.
 
- Public Member Functions inherited from ogdf::HeapBase< IMPL, H, T, C >
 HeapBase (const C &comp=C())
 
virtual const C & comparator () const
 Returns the comparator used to sort the values in the heap.
 
virtual void decrease (Handle handle, const T &value)=0
 Decreases a single value.
 
virtual void merge (IMPL &other)
 Merges in values of other heap.
 
virtual const T & value (const Handle handle) const =0
 Returns the value of that handle.
 

Private Types

using base_type = HeapBase< BinomialHeap< T, C >, BinomialHeapNode< T >, T, C >
 

Private Member Functions

BinomialHeapNode< T > * join (BinomialHeapNode< T > *a, BinomialHeapNode< T > *b)
 Joins heap lists a and b into single list sorted by the ranks.
 
void merge (BinomialHeapNode< T > *other)
 Merges in other heap list into the heap.
 

Static Private Member Functions

static void link (BinomialHeapNode< T > *parent, BinomialHeapNode< T > *child)
 Makes child node a child of parent node.
 
static void release (BinomialHeapNode< T > *heapNode)
 Releases memory occupied by list of heaps given as heapNode.
 

Private Attributes

BinomialHeapNode< T > * m_root
 Root node of the heap.
 

Additional Inherited Members

- Public Types inherited from ogdf::HeapBase< IMPL, H, T, C >
using Handle = H *
 The type of handle used to identify stored values.
 

Detailed Description

template<typename T, typename C = std::less<T>>
class ogdf::BinomialHeap< T, C >

Binomial heap implementation.

Code is mainly based on samples and ideas provided in "Introduction to Algorithms" book (aka "Cormen").

Template Parameters
TDenotes value type of inserted elements.
CDenotes comparison functor determining value ordering.

Definition at line 73 of file BinomialHeap.h.

Member Typedef Documentation

◆ base_type

template<typename T , typename C = std::less<T>>
using ogdf::BinomialHeap< T, C >::base_type = HeapBase<BinomialHeap<T, C>, BinomialHeapNode<T>, T, C>
private

Definition at line 74 of file BinomialHeap.h.

Constructor & Destructor Documentation

◆ BinomialHeap()

template<typename T , typename C >
ogdf::BinomialHeap< T, C >::BinomialHeap ( const C &  cmp = C(),
int  initialSize = -1 
)
explicit

Creates empty binomial heap.

Parameters
cmpComparison functor determining value ordering.
initialSizeignored by this implementation.

Definition at line 155 of file BinomialHeap.h.

◆ ~BinomialHeap()

template<typename T , typename C >
ogdf::BinomialHeap< T, C >::~BinomialHeap ( )
virtual

Destructs the heap.

If the heap is not empty, destructors of contained elements are called and used storage is deallocated.

Definition at line 159 of file BinomialHeap.h.

Member Function Documentation

◆ decrease()

template<typename T , typename C >
void ogdf::BinomialHeap< T, C >::decrease ( BinomialHeapNode< T > *  heapNode,
const T &  value 
)
override

Decreases value of the given heapNode to value.

Behaviour of this function is undefined if node does not belong to a the heap or new value is greater than old one.

Parameters
heapNodeA node for which the value is to be decreased.
valueA new value for the node.

Definition at line 226 of file BinomialHeap.h.

◆ join()

template<typename T , typename C >
BinomialHeapNode< T > * ogdf::BinomialHeap< T, C >::join ( BinomialHeapNode< T > *  a,
BinomialHeapNode< T > *  b 
)
inlineprivate

Joins heap lists a and b into single list sorted by the ranks.

Definition at line 246 of file BinomialHeap.h.

◆ link()

template<typename T , typename C >
void ogdf::BinomialHeap< T, C >::link ( BinomialHeapNode< T > *  parent,
BinomialHeapNode< T > *  child 
)
inlinestaticprivate

Makes child node a child of parent node.

Definition at line 313 of file BinomialHeap.h.

◆ merge() [1/2]

template<typename T , typename C >
void ogdf::BinomialHeap< T, C >::merge ( BinomialHeap< T, C > &  other)
override

Merges in values of other heap.

After merge other heap becomes empty and is valid for further usage.

Parameters
otherA heap to be merged in.

Definition at line 240 of file BinomialHeap.h.

◆ merge() [2/2]

template<typename T , typename C >
void ogdf::BinomialHeap< T, C >::merge ( BinomialHeapNode< T > *  other)
inlineprivate

Merges in other heap list into the heap.

Definition at line 281 of file BinomialHeap.h.

◆ pop()

template<typename T , typename C >
void ogdf::BinomialHeap< T, C >::pop ( )
overridevirtual

Removes the top element from the heap.

Behaviour of this function is undefined if the heap is empty.

Implements ogdf::HeapBase< IMPL, H, T, C >.

Definition at line 196 of file BinomialHeap.h.

◆ push()

template<typename T , typename C >
BinomialHeapNode< T > * ogdf::BinomialHeap< T, C >::push ( const T &  value)
overridevirtual

Inserts a new node with given value into a heap.

Parameters
valueA value to be inserted.
Returns
Handle to the inserted node.

Implements ogdf::HeapBase< IMPL, H, T, C >.

Definition at line 188 of file BinomialHeap.h.

◆ release()

template<typename T , typename C >
void ogdf::BinomialHeap< T, C >::release ( BinomialHeapNode< T > *  heapNode)
staticprivate

Releases memory occupied by list of heaps given as heapNode.

Definition at line 165 of file BinomialHeap.h.

◆ top()

template<typename T , typename C >
const T & ogdf::BinomialHeap< T, C >::top ( ) const
inlineoverridevirtual

Returns reference to the top element in the heap.

Implements ogdf::HeapBase< IMPL, H, T, C >.

Definition at line 176 of file BinomialHeap.h.

◆ value()

template<typename T , typename C = std::less<T>>
const T & ogdf::BinomialHeap< T, C >::value ( BinomialHeapNode< T > *  heapNode) const
inlineoverride

Returns the value of the node.

Parameters
heapNodeThe nodes handle
Returns
the value of the node

Definition at line 137 of file BinomialHeap.h.

Member Data Documentation

◆ m_root

template<typename T , typename C = std::less<T>>
BinomialHeapNode<T>* ogdf::BinomialHeap< T, C >::m_root
private

Root node of the heap.

Definition at line 140 of file BinomialHeap.h.


The documentation for this class was generated from the following file: