|
CppCommon 1.0.5.0
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. | |
| T * | left |
| Pointer to the left child binary tree node. | |
| T * | right |
| Pointer to the right child binary tree node. | |
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.