How many nodes a complete binary tree of level 5 have?
Answers
Answered by
1
I think around 50 to 60
Answered by
0
Sol: if it is a full binary tree with 5 levels i.e., level 0,1,2,3,4.then the number of leaf nodes are pow(2,4)=16.but,from the given data it should be equal to 25.. that means some of these 16 leaves have children in the next level i.e each node in level l-1 has 0 or 2-children.
Similar questions