Left Leaning Red Black Tree
Last updated
A BST such that:
No node has two red links connected to it.
Every path from root to null link has the same number of black links.
Red links lean left.


Height of tree is β€ 2 lg N in the worst case.
Every path from root to null link has same number of black links.
Never two red links in-a-row.



Last updated