Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/heapwolf/forest

Javascript Implementations of SplayTrees, Fusion Trees, BTrees, etc.
https://github.com/heapwolf/forest

Last synced: 25 days ago
JSON representation

Javascript Implementations of SplayTrees, Fusion Trees, BTrees, etc.

Awesome Lists containing this project

README

        

## Node Forrest
Node Forrest is a collection of tree implementations.

### Splay Tree
A splay tree is a self-balancing binary search tree with the additional property that recently accessed elements are quick to access again. It performs basic operations such as insertion, look-up and removal in O(log(n)) amortized time.

### Fusion Treei
This is next on the list to implement.