Why is the maximum time to reach an element in a Balanced Binary Search tree is log n, when in reality, a perfectly balanced tree has 1, 3, 7, 15 elements (that is 1 less than a multiple of 2). The answer given here Why is the height of a balanced binary search tree log(n)? (Proof) is saying let's assume we have 2^N nodes (a multiple of 2)
But, if we take a log of those odd numbers, we won't get a round number for height!
Question:
Is it really log(n+1) but then we discard +1 since it's negligible at huge n?