in Programming in C recategorized by
386 views
0 votes
0 votes
Consider a binary tree for every node | P - Q | <= 2. P represents number of nodes in left subtree of S and Q represents number of nodes in right subtree of S for h > 0. The minimum number of nodes present in such tree of height h = 4 ( Root at 0 level)
in Programming in C recategorized by
by
386 views

2 Comments

Please Discuss General Approach of it
0
0
Total no of node=no of nodes in a complete binary tree of height (h-2 )+2

So here answer is 9
0
0

Please log in or register to answer this question.

Related questions

2 votes
2 votes
3 answers
2