CppCommon
1.0.4.1
C++ Common Library
|
Splay binary tree node. More...
#include <bintree_splay.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... | |
Splay binary tree node.
Definition at line 215 of file bintree_splay.h.
|
inline |
Definition at line 221 of file bintree_splay.h.
T* CppCommon::BinTreeSplay< T, TCompare >::Node::left |
Pointer to the left child binary tree node.
Definition at line 218 of file bintree_splay.h.
T* CppCommon::BinTreeSplay< T, TCompare >::Node::parent |
Pointer to the parent binary tree node.
Definition at line 217 of file bintree_splay.h.
T* CppCommon::BinTreeSplay< T, TCompare >::Node::right |
Pointer to the right child binary tree node.
Definition at line 219 of file bintree_splay.h.