Left-Leaning Red-Black Trees
- BST
- Manage depth of nodes using coloration
- Modified coloration rules
- Every node is either red or black
- Root is black
- (Left-Leaning Property) If a node is red, then it is the left child of its parent
- (Height Limiting Property) On any Root-Null path, no more than two
consequtive nodes are red
- (Balance Property) All root-null paths have the same number of black nodes
- Sedgewick, 2007
|