CameraIcon
CameraIcon
SearchIcon
MyQuestionIcon
MyQuestionIcon
1
You visited us 1 times! Enjoying our articles? Unlock Full Access!
Question

A weight balanced tree is a binary tree in which for each node, the number of nodes in left subtree is at least half at most twice the number of nodes in the right subtree. The maximum possible height of such a tree on n nodes is best described by which of the following?

A
log2n
No worries! We‘ve got your back. Try BYJU‘S free classes today!
B
log43n
No worries! We‘ve got your back. Try BYJU‘S free classes today!
C
log3n
No worries! We‘ve got your back. Try BYJU‘S free classes today!
D
log32n
Right on! Give the BNAT exam to get a 100% scholarship for BYJUS courses
Open in App
Solution

The correct option is D log32n

A weight balanced tree is a binary tree in which for each node, the number of nodes in left subtree is at least half at most twice the number of nodes in the right sub tree. The maximum possible height of such a tree on n nodes is best described by log3/2n.

Total number of nodes can be described by the recurrence T(n) = T((n-1)/3)) + T(2(n-1)/3) + 1 T(1) = 1. Height of the tree will be H(n) = H(2/3(n-1)) + 1, H(1). Drawing a recurrence tree and the cost at each level is 1 and the height will be log(3/2)n.

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.


flag
Suggest Corrections
thumbs-up
0
Join BYJU'S Learning Program
similar_icon
Related Videos
thumbnail
lock
Different Categories in PNC
QUANTITATIVE APTITUDE
Watch in App
Join BYJU'S Learning Program
CrossIcon