2. The maximum number of nodes on levell of a binary tree is which of the following?
(Root is Level 1)
2^1-1
3^1-1
2^1
2^-1
Answers
Answered by
0
Answer:
2^1-1
Explanation:
The maximum number of nodes at level i of a binary tree is 2^i-1: if level is 3 then there will be maximum 7 nodes in the binary tree which is 2^3-1=8-1=7.
Number of nodes of binary tree will be maximum only when tree is full complete.
A binary tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child.
Answered by
0
Answer:
63.
Explanation:
Similar questions