二刷235. Lowest Common Ancestor of a Binary Search Tree

Easy

充分利用BST的properties.

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
        if (root == null){
            return root;
        }
        if (p.val < root.val && q.val < root.val){
            return lowestCommonAncestor(root.left, p,q);
        }
        if (p.val > root.val && q.val > root.val){
            return lowestCommonAncestor(root.right, p,q);
        }
        return root;
    }
}
    原文作者:greatfulltime
    原文地址: https://www.jianshu.com/p/57506e6e79ca
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞