Data Structures Trees Question:
Download Questions PDF

How to find the depth of a binary tree?

Answer:

The depth of a binary tree is found using the following process:

1. Send the root node of a binary tree to a function
2. If the tree node is null, then return false value.
3. Calculate the depth of the left tree; call it ‘d1’ by traversing every node. Increment the counter by 1, as the traversing progresses until it reaches the leaf node. These operations are done recursively.
4. Repeat the 3rd step for the left node. Name the counter variable ‘d2’.
5. Find the maximum value between d1 and d2. Add 1 to the max value. Let us call it ‘depth’.
6. The variable ‘depth’ is the depth of the binary tree.

Download Data Structures Trees Interview Questions And Answers PDF

Previous QuestionNext Question
Explain binary tree? Explain its uses?What is pre-order and in-order tree traversal?