Red Black Tree Introduction
Time complexity:
O(log n) in every operation
Properties
- Nodes are either red or black
- NIL nodes (empty leaf nodes) are black
- Children of red nodes are black
- The number of black nodes on each path from the root node to the NIL node is the same
For more detail