剑指offer树68-II.二叉树的最近公共祖先
Posted trevo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer树68-II.二叉树的最近公共祖先相关的知识,希望对你有一定的参考价值。
二叉树的最近公共祖先
/**
* 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.二叉树的最近公共祖先的主要内容,如果未能解决你的问题,请参考以下文章