Answer:
If the current node is equal to the value K then return the x.size of the left node if it exists, otherwise return 0 if the current node is greater than the value K then recur to the right child Time Complexity-O(tree height)
Median) (if the node is NULL return, the number and test is = = half of the total nodes if yes, save the median otherwise, recur for the right child Time Complexity O(n)
To use the x.size property
now the problem reduces to find number of lesser of equal elements to half of number of nodes of tree
Median
traverse the tree in inorder way
get BSTKEYLESSTHAN and add one to it
check if this number is equal to the n/2
if yes, this is the median node
else continue the traversal.
Time Complexity :- O(n*height of tree)