题解 | #在二叉树中找到两个节点的最近公共祖先#

在二叉树中找到两个节点的最近公共祖先

https://www.nowcoder.com/practice/e0cc33a83afe4530bcec46eba3325116

/**
 * struct TreeNode {
 *	int val;
 *	struct TreeNode *left;
 *	struct TreeNode *right;
 * };
 */

class Solution {
public:
    /**
     * 
     * @param root TreeNode类 
     * @param o1 int整型 
     * @param o2 int整型 
     * @return int整型
     */
    TreeNode *DoseItExist(TreeNode *root,int x,int y){
        if(root==nullptr){
            return nullptr;
        }
        if(root->val==x||root->val==y){
            return root;
        }
        TreeNode* left_exist=DoseItExist(root->left,x,y);
        TreeNode* right_exist=DoseItExist(root->right,x,y);
        if(left_exist&&right_exist){
            return root;
        }
        else if(left_exist){
            return left_exist;
        }
        else if(right_exist){
            return right_exist;
        }
        else{
            return nullptr;
        }
    }
    int lowestCommonAncestor(TreeNode* root, int o1, int o2) {
        return DoseItExist(root,o1,o2)->val;
    }
};

全部评论

相关推荐

09-25 10:34
东北大学 Java
多面手的小八想要自然醒:所以读这么多年到头来成为时代车轮底下的一粒尘
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务