Skip to content

Instantly share code, notes, and snippets.

@GAierken
Last active June 28, 2020 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GAierken/bdac61aec1c7df0d46792fd3fdf268d2 to your computer and use it in GitHub Desktop.
Save GAierken/bdac61aec1c7df0d46792fd3fdf268d2 to your computer and use it in GitHub Desktop.
class Node {
constructor(value){
this.value = value
this.left = null
this.right = null
}
}
class BinarySeachTree {
constructor(){
this.root = null
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment