array-to-btree

Helper Method to flatten an array to Binary Tree

Usage no npm install needed!

<script type="module">
  import arrayToBtree from 'https://cdn.skypack.dev/array-to-btree';
</script>

README

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);
}