Pairing heap node. More...
#include <ogdf/basic/heap/PairingHeap.h>
Protected Member Functions | |
PairingHeapNode (const T &valueOfNode) | |
Creates heap node with a given valueOfNode . | |
Protected Attributes | |
PairingHeapNode< T > * | child |
First child of the node. | |
PairingHeapNode< T > * | next |
Next sibling of the node. | |
PairingHeapNode< T > * | prev |
Previous sibling of the node or parent. | |
T | value |
Value contained in the node. | |
Friends | |
template<typename , typename > | |
class | PairingHeap |
Pairing heap node.
Definition at line 43 of file PairingHeap.h.
|
inlineexplicitprotected |
Creates heap node with a given valueOfNode
.
Definition at line 55 of file PairingHeap.h.
Definition at line 45 of file PairingHeap.h.
|
protected |
First child of the node.
Definition at line 52 of file PairingHeap.h.
|
protected |
Next sibling of the node.
Definition at line 51 of file PairingHeap.h.
|
protected |
Previous sibling of the node or parent.
Definition at line 50 of file PairingHeap.h.
|
protected |
Value contained in the node.
Definition at line 48 of file PairingHeap.h.