585 views
1 votes
1 votes
The number of node in each left subtree is within a factor of $2.$ of the number of nodes in the corresponding right subtree. Also a node allowed to have only one child if that child has no children. This tree has worst case height $O(logn)$. $N$ is the number of nodes in the binary tree.

Is this statement TRUE about Binary Tree?

Please log in or register to answer this question.

Related questions

0 votes
0 votes
3 answers
1
thor asked Nov 27, 2016
4,318 views
The minimum size that an array may require to store a binary tree with n nodes$2^{\left \lceil(log_2(n+1)) \right \rceil -1}$$2n-1$$2n-n+1$$n+1$
3 votes
3 votes
5 answers
2
srestha asked May 22, 2019
1,871 views
Consider the following function height, to which pointer to the root node of a binary tree shown below is passedNote that max(a,b) defined by #define max(a,b) (a>b)?a:b.i...
1 votes
1 votes
0 answers
3
2 votes
2 votes
3 answers
4