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

【easy】235. Lowest Common Ancestor of a Binary Search Tree

时间:2018-02-19 19:19:26      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:post   root   出现   ret   turn   comm   bin   sea   stc   

题意大概是,找两个节点的最低公共祖先

/**
 * 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;   //出现了一大一小,就可以返回root了
    }
};

 

【easy】235. Lowest Common Ancestor of a Binary Search Tree

标签:post   root   出现   ret   turn   comm   bin   sea   stc   

原文地址:https://www.cnblogs.com/sherry-yang/p/8454240.html

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