...

/

Fundamentals of Red-Black Trees

Fundamentals of Red-Black Trees

Learn subroutines of red-black trees and their relation with 2-4 trees.

Red-black trees and 2-4 trees

At first it might seem surprising that a red-black tree can be efficiently updated to maintain the black-height and no-red-edge properties, and it seems unusual to even consider these as useful properties. However, red-black trees were designed to be an efficient simulation of 2-4 trees as binary trees.

Refer to the below figure:

Consider any red-black tree, TT, having n nodes and perform the following transformation: Remove each red node u and connect u's two children directly to the (black) parent of u. After this transformation, we are left with a tree TT’ having only black nodes.

Every internal node in TT’ ...

Create a free account to access the full course.

By signing up, you agree to Educative's Terms of Service and Privacy Policy