Binary tree node.
More...
#include <bintree.h>
|
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...
|
|
template<typename T, typename TCompare = std::less<T>>
struct CppCommon::BinTree< T, TCompare >::Node
Binary tree node.
Definition at line 156 of file bintree.h.
◆ Node()
template<typename T , typename TCompare = std::less<T>>
◆ left
template<typename T , typename TCompare = std::less<T>>
Pointer to the left child binary tree node.
Definition at line 159 of file bintree.h.
◆ parent
template<typename T , typename TCompare = std::less<T>>
Pointer to the parent binary tree node.
Definition at line 158 of file bintree.h.
◆ right
template<typename T , typename TCompare = std::less<T>>
Pointer to the right child binary tree node.
Definition at line 160 of file bintree.h.
The documentation for this struct was generated from the following file: