data_structures
|
A node in a binary search tree. More...
#include <bst.h>
Data Fields | |
void * | key |
The key. More... | |
void * | val |
The value. More... | |
struct s_bst_node * | left |
The left child. More... | |
struct s_bst_node * | right |
The right child. More... | |