Find maximum and minimum height of a binary tree on 11 vertices
Answers
Answered by
0
Answer:
In a binary tree, a node can have maximum two children. If there are n nodes in binary tree, maximum height of the binary tree is n-1 and minimum height is floor(log2n).
Similar questions