Database
redblack.asc
Associated article: Red-Black Trees
Tags: Database Design
_RED-BLACK TREES_
by Bruce Schneier
[Example 1: Insert operation, in pseudocode]
RedBlackInsert(T,x)
{
TreeInsert(T,x)
color(x) <-- Red
while x != root(T) and color(p(x))==Red
if p(x)==left(p(p(x)))
y <-- ...


