Last active
January 14, 2019 01:24
-
-
Save kevinahn7/6d62f26348bcf438d2547a72a52e5344 to your computer and use it in GitHub Desktop.
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 reverse(node) { | |
| if (node === null) { | |
| return; | |
| } else { | |
| reverse(node.left); | |
| reverse(node.right(; | |
| } | |
| let temp = node.left; | |
| node.left = node.right; | |
| node.right = temp; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment