Andersson Trees are a version of a balanced Binary tree, while similar to RedBlack Trees the balancing is not as strict.

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/AnderssonTree.js

License

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

Meta