A RedBlack tree is a form of a self balancing binary tree.

Performance

BestWorst
SpaceO(n)O(n)
SearchO(log n)O(log n)
InsertO(log n)O(log n)
DeleteO(log n)O(log n)

Extends

Constructor

Defined collections/RedBlackTree.js

License

MIT https://github.com/C2FO/comb/raw/master/LICENSE

Meta