Red-Black Trees
Red-Black Tree is a self balancing binary search tree data structure noted for fast storage and retrieval of ordered information
Properties:
- Color Property - every node is either Red or Black
- Black Height Property - the number of black nodes is the same along every path from a fixed node to every descendent null reference
- Red Child Property - red nodes cannot have a red node as a child
- Root Property - the root node will be always set to black
Read more about Red-Black trees:
Click here