Question:

Let H, I, L, and N represent height, number of internal nodes, number of leaf nodes, and the total number of nodes respectively in a rooted binary tree.
Which of the following statements is/are always TRUE ?

Updated On: Jul 9, 2024
  • L ≤ I + 1
  • H + 1 ≤ N ≤ 2H+1 − 1
  • H ≤ I ≤ 2H - 1
  • H ≤ L ≤ 2H-1
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A, B, C

Solution and Explanation

The correct option is (A) : L ≤ I + 1, (B) : H + 1 ≤ N ≤ 2H+1 − 1 and (C) : H ≤ I ≤ 2H - 1.
Was this answer helpful?
0
0