Red Black Tree Properties:
- A valid binary search tree.
- Every Node is either Red or Black.
- The number of black nodes is the same along every path from a fixed node to every descendent null reference.
- Red nodes can't have a red node as a child.
- The root node is always set to black.
Example and more information:
Here is an example of a valid Red Black Tree:
Here is more information about Red Black Trees:
Link here.