Skip to content

Instantly share code, notes, and snippets.

@scriptonian
Created September 6, 2017 14:57
Show Gist options
  • Save scriptonian/9cf75eb9b0d8995aba4aeef81e719583 to your computer and use it in GitHub Desktop.
Save scriptonian/9cf75eb9b0d8995aba4aeef81e719583 to your computer and use it in GitHub Desktop.
Binary Search Tree - Insert Test
var bst = new BinarySearchTree();
bst.insert(60);
bst.insert(30);
bst.insert(85);
bst.insert(95);
bst.insert(80);
bst.insert(35);
bst.insert(20);
console.log(bst);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment