The above algorithm ____________.
Following is an algorithm to return a key in a BST(Binary Search Tree).
Returnkey(Tree T)
{
x= root[T];
while(right[x] != null)
{
x = right[x];
}
return x;
}
Reveal answer
Fill a bubble to check yourself