其他分享
首页 > 其他分享> > leetcode235_BST的最近公共祖先

leetcode235_BST的最近公共祖先

作者:互联网

利用BST有序的特点即可。

class Solution {
    public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
        if(root == null || root == p || root == q) return root;
        if(root.val > p.val && root.val > q.val) return lowestCommonAncestor(root.left, p, q);
        else if(root.val < p.val && root.val < q.val) return lowestCommonAncestor(root.right, p, q);
        return root;
    }
}

标签:leetcode235,return,val,BST,lowestCommonAncestor,祖先,TreeNode,root
来源: https://www.cnblogs.com/huangming-zzz/p/15972603.html