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

236. 二叉树的最近公共祖先

时间:2020-03-24 12:59:17      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:def   stc   tree   init   div   class   efi   最近公共祖先   col   

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution 
11 {
12 public:
13     TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) 
14     {
15         //看根节点
16         if(!root || p == root || q == root) return root;
17 
18         //1、两个结点在根节点的左子树上
19         //2、两个结点在根节点的右子树上
20         //3、两个结点在根节点的两侧
21         TreeNode* left = lowestCommonAncestor(root->left,p,q);
22         TreeNode* right = lowestCommonAncestor(root->right,p,q);
23 
24         if(!left) return right;
25         if(!right) return left;
26 
27         return root;
28     }
29 };

 

236. 二叉树的最近公共祖先

标签:def   stc   tree   init   div   class   efi   最近公共祖先   col   

原文地址:https://www.cnblogs.com/yuhong1103/p/12558149.html

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