node-binary-search-tree icon indicating copy to clipboard operation
node-binary-search-tree copied to clipboard

Self-balancing binary search tree for Node.js (uses AVL tree)

Results 13 node-binary-search-tree issues
Sort by recently updated
recently updated
newest added

It is necessary to update the version of underscore because of some security problems : https://www.npmjs.com/advisories/1674

Thanks for the great module! I get that you're not maintaining it anymore, so instead of a Pull request, I'm just going to leave this here for any future coders...

not really a bug, but also not a feature. just a tiny typo that dependency-ci chokes on all the time... would be great if you could merge this should you...

Removes dependency on node.js util module (by copying the only used inherits method to customUtils).

In the file `lib/avltree.js` there is a require for `util`, but this lib was never specified as a dependency in package.json. When trying to use `node-binary-search-tree` on a project that...

When i insert data like that i get Maximum call stack size error. for(var i=0;i

According to your `package.json`, this package has a dependency on `underscore ~1.4.4`, but looking through your `lib/` directory, the only file that `require()`'s it is `avltree.js`, but I don't see...

Hi, First of all, thank you so much for developing this package. It's really useful and do exactly what I expected to do for the most of the time. One...