You are given a Binary Tree. You are supposed to return the length of the diameter of the tree.
The diameter of a binary tree is the length of the longest path between any two end nodes in a tree.
Note :
The number of edges between two nodes represents the length of the path between them.
For Example :
For the given binary tree
Nodes in the diameter are highlighted. The length of the diameter, i.e., the path length, is 6.
Input Format :
The first line contains an integer 'T' which denotes the number of test cases or queries to be run. Then the test cases are as follows.
The first line of each test case contains elements of the tree in the level order form. The line consists of values of nodes separated by a single space. In case a node is null, we take -1 in its place.
For Example, the input for the tree depicted in the above image would be :
1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1
Explanation :
Level 1 :
The root node of the tree is 1
Level 2 :
Left child of 1 = 2
Right child of 1 = 3
Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6
Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)
Level 5 :
Left child of 7 = null (-1)
Right child of 7 = null (-1)
Note :
The above format was just to provide clarity on how the input is formed for a given tree.
The sequence will be put together in a single line separated by a single space. Hence, for the above-depicted tree, the input will be given as:
1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Output Format :
Print an integer that denotes the length of the diameter of the given binary tree.
Print the output of each test case in a new line.
Note :
You do not need to print anything. It has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 10
0 <= N <= 10^5
1 <= data <= 10^4
Where ‘N’ is the total number of nodes in the binary tree, and 'data' is the value of the binary tree node.
Time Limit: 1 sec
The diameter of a binary tree is the length of the longest path between any two end nodes in the tree.
The diameter of a binary tree can be calculated by finding the maximum of the following three valu...read more
in this i have caluclated the height of left side tree then height of right side tree and added the result and returned the values in recursion. I have created one height function,and then call the fu...read more
The basic idea of this approach is to break the problem into subproblems.
Now, there are three possible cases:
- The diameter of the tree is present in the left subtree.
- The diameter of the tree...read more
The basic idea of this approach is to calculate the height of the subtree in the same recursion instead of calling getHeight() for it.
Let us define a recursive function getDiamter(T...read more
Top Paytm SDE-2 interview questions & answers
Popular interview questions of SDE-2
Reviews
Interviews
Salaries
Users/Month