Tagged Questions
1
vote
1answer
47 views
find the smallest depth leaf node in bst
Need to get the leaf node that has minimum depth. I cannot think of a good way to do it without storing additional information in each node, please suggest, thanks very much.
1
vote
5answers
2k views
Calculate the depth of a binary search tree?
I am having difficulty calculating the summation of depths [the sum of the individual depths for all children of the root] for a given BST. I have the total number of nodes for the tree, and I am ...
1
vote
1answer
747 views
Proof for depth of balanced search tree
If T is a balanced BST with n elements, L its left subtree and R its right one, how can I prove that its depth is less than or equal to 2log(n) + 1?
There is a proof by induction which I have but I ...