Closed
Description
Introduction to Algorithms by Charles E. Leiserson, Clifford Stein, Ronald Rivest, and Thomas H. Cormen:
13.1 Properties of red-black trees
- For each node, all simple paths from the node to descendant leaves contain the
same number of black nodes.
Current delete operation violates "black-height" property.
For example, given this red-black tree:
Let's delete the node 11
.
The tree should be rebalanced as below:
After deleting 11 (requires rebalancing):
[510,511]
/ \
-------- ----------------------------
/ \
[383,384] [830,831]
/ \ / \
/ \ / \
[261,262](red) [410,411] [647,648] [899,900](red)
/ \ \ / \
/ \ \ / \
[82,83] [292,293] [815,816](red) [888,889] [972,973]
\ /
\ /
[238,239](red) [953,954](red)
However, current implementation returns:
After deleting 11 (requires rebalancing):
[510,511]
/ \
---------- --------------------------
/ \
[82,83] [830,831]
\ / \
\ / \
[383,384] [647,648] [899,900]
/ \ \ / \
/ \ \ / \
[261,262] [410,411] [815,816] [888,889] [972,973]
/ \ /
/ \ /
[238,239] [292,293] [953,954]
This violates "black-height" property.
ref. #10877.