Created
January 17, 2018 16:00
-
-
Save sarahzhao25/345f520cd9d2e7355a66f14e96ccbf41 to your computer and use it in GitHub Desktop.
constructor.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function BinarySearchTree(value) { | |
this.value = value; | |
this.left = this.right = null; | |
this.parent = {node: null, side: ‘’}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment