|
CPPX 2.1.0
A Modern C++ Utility Library
|
#include <cppx.h>
Public Member Functions | |
| Node (T val) | |
| Node (T val, Node< T > *left, Node< T > *right) | |
| int | get_height_val () const |
| void | set_height_val (int h) |
| const T & | get_data () const |
| void | set_data (const T &val) |
| Node< T > * | get_left () const |
| void | set_left (Node< T > *node) |
| Node< T > * | get_right () const |
| void | set_right (Node< T > *node) |
| Color | get_color () const |
| void | set_color (Color c) |
| Node< T > * | get_parent () const |
| void | set_parent (Node< T > *parent) |
Friends | |
| class | BST< T > |
| class | AVLTree< T > |
| class | RBTree< T > |
| class | BinaryTree< T > |
|
explicit |
| Color stl_ext::Node< T >::get_color | ( | ) | const |
| int stl_ext::Node< T >::get_height_val | ( | ) | const |