|
|
|
|
|
by jrockway
5400 days ago
|
|
That result surprises me. Red-black trees do their work at insertion time, and AVL trees split the work between insertion and selection. This should make red-black trees faster at selection and AVL trees faster at insertion, and both should do a set of insertions and selections in the same time. (A red-black tree is a plain-old binary search tree for everything but modifications.) |
|