rb_tree icon indicating copy to clipboard operation
rb_tree copied to clipboard

Red-black tree C implementation

Results 2 rb_tree issues
Sort by recently updated
recently updated
newest added

The function starts as follows: ``` 232 // Returns 1 on success, 0 otherwise. 233 int 234 rb_tree_insert_node (struct rb_tree *self, struct rb_node *node) { 235 int result = 0;...