0
1
Red-black trees in C based on Cormen's book - Introduction to Algorithms.
Shortcut: rbtreestruct
rbtreestruct
0 Comments
struct node { char color; int key; struct node *left; struct node *right; struct node *p; }; typedef struct node *rbtree;