Skip to content

Instantly share code, notes, and snippets.

@wohhie
Created July 10, 2021 17:06
Show Gist options
  • Select an option

  • Save wohhie/a7c323856d683612a13fa511742fe82f to your computer and use it in GitHub Desktop.

Select an option

Save wohhie/a7c323856d683612a13fa511742fe82f to your computer and use it in GitHub Desktop.
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