data_structures
|
A node in a red-black tree. More...
#include <rbt.h>
Data Fields | |
void * | key |
The key. More... | |
void * | val |
The value. More... | |
struct s_rbt_node * | left |
The left child. More... | |
struct s_rbt_node * | right |
The right child. More... | |
t_rbt_node_color | color |
The color. More... | |
size_t | count |
The number of this node's children. More... | |