题解 | #二叉搜索树的最近公共祖先#
二叉搜索树的最近公共祖先
http://www.nowcoder.com/practice/d9820119321945f588ed6a26f0a6991f
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @param p int整型
* @param q int整型
* @return int整型
*/
int common = 0;
public int lowestCommonAncestor (TreeNode root, int p, int q) {
//叶子节点返回空
if (root == null) {
return common;
}
int min = Math.min(p,q);
int max = Math.max(p,q);
if(min > root.val){ //最小值比根节点大,说明两个节点都在右子树中,公共节点也在右子树中
common = root.right.val;
return lowestCommonAncestor(root.right,p,q);
}
if(max< root.val){ //最大值比根节点小,说明两个节点都在左子树中,公共节点也在左子树中
common = root.left.val;
return lowestCommonAncestor(root.left,p,q);
}
common = root.val; //除去上面两种情况,则一个在左,一个在右,说明当前节点就是公共节点了
return common;
}
}