Leetcode:235. 二叉搜索树的最近公共祖先

Posted cell_coder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode:235. 二叉搜索树的最近公共祖先相关的知识,希望对你有一定的参考价值。

Leetcode:235. 二叉搜索树的最近公共祖先

Leetcode:235. 二叉搜索树的最近公共祖先

Talk is cheap . Show me the code .

/**
 * 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==NULL) return NULL;
        if(root->val>p->val&&root->val>q->val) return lowestCommonAncestor(root->left,p,q);
        if(root->val<p->val&&root->val<q->val) return lowestCommonAncestor(root->right,p,q);
        return root;
    }
};

以上是关于Leetcode:235. 二叉搜索树的最近公共祖先的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-235二叉搜索树的最近公共祖先

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

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

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

Leetcode 235.二叉搜索树的公共祖先

leetcode 235. 二叉搜索树的最近公共祖先(c++)