Skip to content

MarvinDrude/BinaryTree

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

BinaryTree

Implementation of Binary Tree in JavaScript

Usage:

var testTree = new BinaryTree();

testTree.addValue(5);
testTree.addValue(2);
testTree.addValue(3);
testTree.addValue(1);

testTree.traverse();

var searched = testTree.seach(3);

About

Implementation of Binary Tree in JavaScript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors