Skip to content

Instantly share code, notes, and snippets.

@yekmer
Created January 23, 2014 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yekmer/8588029 to your computer and use it in GitHub Desktop.
Save yekmer/8588029 to your computer and use it in GitHub Desktop.
public static Node lca(Node node, int a, int b) {
while (node != null) {
if(a > node.value && b > node.value) {
node = node.right;
} else if (a < node.value && b < node.value) {
node = node.left;
} else {
return node;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment