0 votes
in Data Structures & Algorithms by
What is the average case time complexity for finding the height of the binary tree?

(a) h = O(loglogn)

(b) h = O(nlogn)

(c) h = O(n)

(d) h = O(log n)

My question is based upon Binary Tree Properties topic in chapter Binary Trees of Data Structures & Algorithms

1 Answer

0 votes
by
Right answer is (d) h = O(log n)

The explanation is: The nodes are either a part of left sub tree or the right sub tree, so we don’t have to traverse all the nodes, this means the complexity is lesser than n, in the average case, assuming the nodes are spread evenly, the time complexity becomes O(logn).

Related questions

0 votes
asked Dec 8, 2022 in Data Structures & Algorithms by sharadyadav1986
0 votes
asked Dec 8, 2022 in Data Structures & Algorithms by Robin
...