redblack
v0.1.2
Published
Red-black tree for Node.js and the browser
Downloads
11
Readme
redblack.js
Red-black tree for Node.js and the browser
Usage
var tree = redblack.tree();
tree.insert('foo', 'bar');
console.log(tree.get('foo')); // -> 'bar'
tree.delete('foo');
console.log(tree.get('foo')); // -> null
Download
Releases are available on GitHub or via NPM.
npm install redblack
Development: redblack.js Production: redblack.min.js