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

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

时间:2020-02-28 19:05:14      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:ini   arc   public   int   http   cpp   search   for   problem   

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. 二叉搜索树的最近公共祖先

标签:ini   arc   public   int   http   cpp   search   for   problem   

原文地址:https://www.cnblogs.com/cell-coder/p/12378159.html

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