I have a basic understanding of both red black trees and 2-3-4 trees and how they maintain the height balance to make sure that the worst case operations are O(n logn).
But, I am not able to understand this text from Wikipedia
2-3-4 trees are an isometry of red-black trees, meaning that they are equivalent data structures. In other words, for every 2-3-4 tree, there exists at least one red-black tree with data elements in the same order. Moreover, insertion and deletion operations on 2-3-4 trees that cause node expansions, splits and merges are equivalent to the color-flipping and rotations in red-black trees.
I don't see how the operations are equivalent. Is this quote on Wikipedia accurate? How can one see that the operations are equivalent?
rb-tree(red-black-tree) is not isomorphic to 2-3-4-tree. Because the 3-node in 2-3-4-tree can be lean left or right if we try to map this 3-node to a rb-tree. But llrb-tree(Left-leaning red-black tree) does.
Words from Robert Sedgewick(In
Introduction
section):Also Page29 and Page30 of presentation from Robert Sedgewick. This a presentation about LLRB tree.
And "Analogy to B-trees of order 4" section of "Red-black Tree" in the wikipedia, it contains a good graph.