Rabbit Tree
Radix bit tries for implementing associative arrays and sets in C.
|
Linked list of nodes. More...
#include <node.h>
Data Fields | |
struct RBT_NODE_STACK_T * | next |
RBT_NODE_T * | node |
Linked list of nodes.
A unidirectional linked list used for implementing dynamic stacks of nodes for e.g. tracking parent nodes when traversing a tree.
struct RBT_NODE_STACK_T* RBT_NODE_STACK_T::next |
The next item.
RBT_NODE_T* RBT_NODE_STACK_T::node |
The node.