CS 400 Red Black Tree
This is the homepage for the CS 400 Red Black Tree topic.
Red Black Tree properties
- Each node is either red or black.
- The root is always black.
- All leaves (null nodes) are black.
- If a red node has children, then, both its children must be black (no two red nodes can be adjacent).
- Every path from a node to its descendant null nodes must have the same number of black nodes.
Other resources