-
-
Save wohhie/3747e07dd53cdfabcf650c73a7348207 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 sum_tree_data(Node node){ | |
| int x, y; | |
| if (node != null){ | |
| x = sum_tree_data(node.left); | |
| y = sum_tree_data(node.right); | |
| return x + y + node.data; | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment