美文网首页
求二叉树的两个节点的最近公用先祖

求二叉树的两个节点的最近公用先祖

作者: 令一 | 来源:发表于2015-07-12 22:49 被阅读0次

My first Leetcode code.

/**

* Definition for a binary tree node.

* struct TreeNode {

*    int val;

*    TreeNode *left;

*    TreeNode *right;

*    TreeNode(int x) : val(x), left(NULL), right(NULL) {}

* };

*/

#define max(val1, val2)  (val1 > val2 ? val1 : val2)

#define min(val1, val2)  (val1 < val2 ? val1 : val2)

class Solution {

public:

TreeNode* lowestCommonAncestor(TreeNode* root, TreeNode* p, TreeNode* q) {

if (root == nullptr || p == nullptr || q == nullptr ) return nullptr;

if (max(p->val, q->val) < root->val)

return lowestCommonAncestor(root->left, p, q);

else if (min(p->val, q->val) > root->val)

return lowestCommonAncestor(root->right, p, q);

else

return root;

}

};

相关文章

网友评论

      本文标题:求二叉树的两个节点的最近公用先祖

      本文链接:https://www.haomeiwen.com/subject/seeuqttx.html