CppCommon
1.0.4.1
C++ Common Library
|
Red-Black binary tree node. More...
#include <bintree_rb.h>
Public Member Functions | |
Node () | |
Public Attributes | |
T * | parent |
Pointer to the parent binary tree node. More... | |
T * | left |
Pointer to the left child binary tree node. More... | |
T * | right |
Pointer to the right child binary tree node. More... | |
bool | rb |
Red-Black flag. More... | |
Red-Black binary tree node.
Definition at line 219 of file bintree_rb.h.
|
inline |
Definition at line 226 of file bintree_rb.h.
T* CppCommon::BinTreeRB< T, TCompare >::Node::left |
Pointer to the left child binary tree node.
Definition at line 222 of file bintree_rb.h.
T* CppCommon::BinTreeRB< T, TCompare >::Node::parent |
Pointer to the parent binary tree node.
Definition at line 221 of file bintree_rb.h.
bool CppCommon::BinTreeRB< T, TCompare >::Node::rb |
Red-Black flag.
Definition at line 224 of file bintree_rb.h.
T* CppCommon::BinTreeRB< T, TCompare >::Node::right |
Pointer to the right child binary tree node.
Definition at line 223 of file bintree_rb.h.