1.0.7 • Published 4 years ago

sized-balanced-tree v1.0.7

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

Sized-Balanced-Tree

Build Status Coverage Status npm version

Sized Balanced Tree implementation in JavaScript
OperationAverageWorst
AddO(log n)O(log n)
RemoveO(log n)O(log n)
FindO(log n)O(log n)
Find minimumO( log n)O(log n)
Find maximumO(log n)O(log n)
Nth elementO(log n)O(log n)

Install package

npm install sized-balanced-tree 

Install devependecies and build library

  • Install dependencies

    npm install

  • Run and test in devloper environment

    npm run run-dev

  • Build non-minified version of the library

    npm run build-dev

  • Build library and use in production

    npm run build-prod

    You will find the library in dist folder

  • Update or generate api doc

    npm run generate-doc

  • Do benchmark

    npm run benchmark

  • Run tests

    npm run test

API Doc

https://wistful-polish.surge.sh/

1.0.7

4 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago