Skip to content

Instantly share code, notes, and snippets.

@arlenner
Created October 19, 2020 16:13
Show Gist options
  • Save arlenner/82b546001533d1aa892c0481a60e7310 to your computer and use it in GitHub Desktop.
Save arlenner/82b546001533d1aa892c0481a60e7310 to your computer and use it in GitHub Desktop.
Binary Tree article fig1
function BTNode(op, L, R) {
this.op = op
this.left = L
this.right = R
}
function BinaryTree(head) {
this.head = head
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment