Created
October 19, 2020 16:13
-
-
Save arlenner/82b546001533d1aa892c0481a60e7310 to your computer and use it in GitHub Desktop.
Binary Tree article fig1
This file contains hidden or 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 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