Created
July 10, 2021 17:06
-
-
Save wohhie/a7c323856d683612a13fa511742fe82f 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
| private int treeHeight(Node node){ | |
| int x, y; | |
| if (node != null){ | |
| x = treeHeight(node.left); | |
| y = treeHeight(node.right); | |
| return (x > y) ? x + 1 : y + 1; | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment