js-bst
Binary search tree data structure library for JavaScript. Parent is aureooms/js-data-structures.
let tree = new SplayTree( compare.increasing ) ;
tree.add( 58786 ) ;
tree.find( 58787 ) ; // NIL
tree.find( 58786 ) ; // BINGO
Children
- [x] @aureooms/js-red-black-tree
- [x] Splay tree
- [ ] AVL tree
- [ ] 2-3 tree
- [ ] AA tree
- [ ] Scapegoat tree
- [ ] Treap