The Original CHomP Software
|
The structure that holds a graph node for the graph representation of a Fibonacci heap. More...
Public Attributes | |
element | key |
The value of the element that is used to compare the elements. More... | |
bool | mark |
A mark bit which indicates whether the node has lost a child since the last time it was made a child of another node. More... | |
int_t | degree |
The degree of the node, i.e., the number of its children. More... | |
int_t | number |
The number of this node. More... | |
NodePtr | parent |
A pointer to the parent node. More... | |
NodePtr | child |
A pointer to one of the children nodes. More... | |
NodePtr | left |
A pointer to the left sibling node. More... | |
NodePtr | right |
A pointer to the right sibling node. More... | |
The structure that holds a graph node for the graph representation of a Fibonacci heap.
NodePtr chomp::homology::FibonacciHeap< element >::Node::child |
int_t chomp::homology::FibonacciHeap< element >::Node::degree |
element chomp::homology::FibonacciHeap< element >::Node::key |
NodePtr chomp::homology::FibonacciHeap< element >::Node::left |
bool chomp::homology::FibonacciHeap< element >::Node::mark |
int_t chomp::homology::FibonacciHeap< element >::Node::number |
NodePtr chomp::homology::FibonacciHeap< element >::Node::parent |
NodePtr chomp::homology::FibonacciHeap< element >::Node::right |