https://github.com/xieqing/red-black-tree A Red-black Tree Implementation In C There are several choices when implementing red-black trees: store parent reference or not recursive or non-recursive (iterative) do top-down splits or bottom-up splits (o…