首页 > 其他分享 >LeetCode235. 二叉搜索树的最近公共祖先

LeetCode235. 二叉搜索树的最近公共祖先

时间:2023-06-02 13:13:39浏览次数:43  
标签:LeetCode235 TreeNode val lowestCommonAncestor 二叉 搜索 return root

class Solution {
public:
    TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
        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;
    }
};

标签:LeetCode235,TreeNode,val,lowestCommonAncestor,二叉,搜索,return,root
From: https://www.cnblogs.com/tangxibomb/p/17451459.html

相关文章