码迷,mamicode.com
首页 > 其他好文 > 详细

【剑指offer】【树】68-II.二叉树的最近公共祖先

时间:2020-04-12 10:59:01      阅读:62      评论:0      收藏:0      [点我收藏+]

标签:val   roo   for   struct   tco   int   null   amp   com   

二叉树的最近公共祖先

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {
        if(!root)   return NULL;        
        if(root == p||root == q)    return root;
        TreeNode* left = lowestCommonAncestor(root->left, p, q);
        TreeNode* right = lowestCommonAncestor(root->right, p, q);
        if(left && right)   return root;
        return left ? left : right; // 只有一个非空则返回该指针,两个都为空则返回空指针
    }
};

【剑指offer】【树】68-II.二叉树的最近公共祖先

标签:val   roo   for   struct   tco   int   null   amp   com   

原文地址:https://www.cnblogs.com/Trevo/p/12683696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!