Microsoft Interview Question
1,272 Interview Reviews |
Back to all Microsoft Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Engineer at Microsoft:
Helpful Question?
Yes |
No
Inappropriate?



0 of 0 people found this helpful
by Guru:
{
if (root == NULL)
{
throw;
}
int smallest = root->data;
int smallestInSubtree = smallest;
if (root->left != NULL)
{
smallestInSubtree = SmallestInTree(root->left);
smallest = (smallestInSubtree < smallest) ?
smallestInSubtree : smallest;
}
if (root->right != NULL)
{
smallestInSubtree = SmallestInTree(root->right);
smallest = (smallestInSubtree < smallest) ?
smallestInSubtree : smallest;
}
return smallest;
}