#include <node.h>
Public Member Functions | |
| RedBlackNode () | |
| The default constructor. | |
| ~RedBlackNode () | |
| The destructor. | |
Public Attributes | |
| RedBlackNode * | left |
| The left branch of the tree from this node. | |
| RedBlackNode * | right |
| The right branch of the tree from this node. | |
| RedBlackNode * | parent |
| The parent node. | |
| Key | id |
| The key for this node. | |
| Data | data |
| The data held at this node. | |
| unsigned char | color: 1 |
| The color of the node (either red or black). | |
1.5.8