npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

bintrees

v1.0.2

Published

Binary Search Trees

Downloads

8,572,057

Readme

Binary Trees Build Status

This package provides Binary and Red-Black Search Trees written in Javascript. It is released under the MIT License.

Binary Search Trees are a good way to store data in sorted order. A Red-Black tree is a variation of a Binary Tree that balances itself.

Algorithms were taken from Julienne Walker: http://eternallyconfuzzled.com/jsw_home.aspx

Trees

  • BinTree - Binary Search Tree
  • RBTree - Red-Black Tree

Quickstart

node.js:

npm install bintrees
var RBTree = require('bintrees').RBTree;

var tree = new RBTree(function(a, b) { return a - b; });

tree.insert(2);
tree.insert(-3);

see examples/node.js for more info

In the browser:

<script src="/path/to/rbtree.js"></script>
<script>
    var tree = new RBTree(function(a, b) { return a - b; });
    tree.insert(0);
    tree.insert(1);
</script>

see examples/client.html for more info

Constructor

Requires 1 argument: a comparator function f(a,b) which returns:

  • 0 if a == b
  • 0 if a > b

  • <0 if a < b

Methods

insert(item)

Inserts the item into the tree. Returns true if inserted, false if duplicate.

remove(item)

Removes the item from the tree. Returns true if removed, false if not found.

size

Number of nodes in the tree.

clear()

Removes all nodes from the tree.

find(item)

Returns node data if found, null otherwise.

findIter(item)

Returns an iterator to the node if found, null otherwise.

lowerBound(item)

Returns an iterator to the tree node at or immediately after the item. Returns null-iterator if tree is empty.

NOTE: Changed in version 1.0.0 to match C++ lower_bound

upperBound(item)

Returns an iterator to the tree node immediately after the item. Returns null-iterator if tree is empty.

NOTE: Changed in version 1.0.0 to match C++ upper_bound

min()

Returns the min node data in the tree, or null if the tree is empty.

max()

Returns the max node data in the tree, or null if the tree is empty.

each(f)

Calls f on each node's data, in order.

reach(f)

Calls f on each node's data, in reverse order.

iterator()

Returns a null-iterator. See Iterators section below.

Iterators

tree.iterator() will return a null-iterator. On a null iterator,

  • next() will return the first element in the tree
  • prev() will return the last element in the tree

Otherwise,

  • next() will return the next element
  • prev() will return the previous element
  • data() will return the node the iterator is pointing to

When iteration reaches the end, the iterator becomes a null-iterator again.

Forward iteration example:

var it=tree.iterator(), item;
while((item = it.next()) !== null) {
    // do stuff with item
}

If you are iterating forward through the tree, you can always call prev() to go back, and vice versa.

NOTE: iterators become invalid when you add or remove elements from the tree.

Production Usage

  • Coinbase Exchange, since Jan 26, 2015.
  • If you are using this in production, please let me know! (add your company to this README in a pull request)