For AVL trees, which one of the following is possible as the tree size (expressed in term of the tree height h)? Recall that the size of a tree is the number of nodes in the tree.
A. $Θ(h^{2.1})$ B. $Θ(1.1^h)$ C. $Θ(1.9^h)$ D. $Θ(2.1^h)$
So this question came up on my midterm and I don't understand why the answer is C and not D. How I solved it is: $h=log(n)$ so $n=2^h$. Does it have anything to do with the fact that it's asking for a tight bound?