What is the average case time complexity for finding the height of the binary tree?
What is the average case time complexity for finding the height of the binary tree? Correct Answer h = O(log n)
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).