Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

binary search tree js

class Node {
  constructor(value){
      this.value = value
      this.left = null
      this.right = null
  }
}

class BinarySeachTree {
      constructor(){
        this.root = null
      }
}
Source by gist.github.com #
 
PREVIOUS NEXT
Tagged: #binary #search #tree #js
ADD COMMENT
Topic
Name
4+2 =