Lines Matching refs:red
43 * splay trees and red-black trees.
57 * A red-black tree is a binary search tree with the node color as an
61 * - each red node (except for the root) has a black parent,
64 * Every operation on a red-black tree is bounded as O(lg n).
65 * The maximum height of a red-black tree is 2lg (n+1).
301 /* Macros that define a red-black tree */
337 #define RB_SET_BLACKRED(black, red, field) do { \
339 RB_COLOR(red, field) = RB_RED; \