We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
public static Node lca(Node root, int v1, int v2) {
// Write your code here.
if (v1 > root.data && v2 > root.data) {
// Move to the right subtree
return lca(root.right, v1, v2);
}
if (v1 < root.data && v2 < root.data) {
// Move to the left subtree
return lca(root.left, v1, v2);
}
// Found the LCA
return root;
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Binary Search Tree : Lowest Common Ancestor
You are viewing a single comment's thread. Return to all comments →