Open In App
Related Articles

Data Structures | Binary Trees | Question 8

Improve Article
Improve
Save Article
Save
Like Article
Like

The number of leaf nodes in a rooted tree of n nodes, with each node having 0 or 3 children is:
(A) n/2
(B) (n-1)/3
(C) (n-1)/2
(D) (2n+1)/3


Answer: (D)

Explanation: Let L be the number of leaf nodes and I be the number of internal nodes, then following relation holds for above given tree (For details, please see question 3 of this post)

  L = (3-1)I + 1 = 2I + 1

Total number of nodes(n) is sum of leaf nodes and internal nodes

  n = L + I

After solving above two, we get L = (2n+1)/3

Quiz of this Question

Last Updated : 10 Jul, 2018
Like Article
Save Article
Similar Reads
Related Tutorials