Size, Sum, Maximum And Height Of A Binary Tree
easy
1. You are given a partially written BinaryTree class. 2. You are required to complete the body of size, sum, max and height function. The functions are expected to 2.1. size - return the number of nodes in BinaryTree 2.2. sum - return the sum of nodes in BinaryTree 2.3. max - return the highest node in BinaryTree 2.4. height - return the height of tree in terms of edges 3. Input and Output is managed for you.
Constraints
None
Format
Input
Input is managed for you
Output
Output is managed for you
Example
Sample Input
19
50 25 12 n n 37 30 n n n 75 62 n 70 n n 87 n n
Sample Output
9
448
87
3
Question Video