This is a draft implementation of a Binary Tree in Javascript.
No libraaries are used to define the Tree
, but mocha
and chai
are used to test the code, so you should execute npm install
before running tests.
The BinaryTree
implementation is defined in binary-tree.js
, example usages are in index.js
(too see them use npm start
), test are defined in spec.js
and you can execute them with npm test
;