1.0.1 • Published 10 years ago

array-to-btree v1.0.1

Weekly downloads
3
License
BSD-2-Clause
Repository
github
Last release
10 years ago

ArrayToBtree Build Status

Summary

ArrayToBtree is a javcript implementation of building a "Binary tree" from an "Un-Ordered" array. The Tree is not a fully weighted binary tree, but provides an API to convert an array to a tree datastructure.

Installation

npm install -g array-to-btree

Sample Usage

var tree = require('array-to-btree');
var inputList = [3,5,8,9,11,12,13,15];
function build(input){
   return tree.toBTree(input);
}