I have a few million consecutive numbers e.g. {3, 1, 2, ...}. In the same order as they are, numbers are inserted into a binary search tree. I need to found what is the height of the tree.
Is there any method to determine a height of the tree, without build a whole tree?