题意:二叉树求两点LCA。

/**
 * 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 || 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;
    }
};

  

相关文章:

  • 2021-12-28
  • 2021-05-11
猜你喜欢
  • 2021-06-12
  • 2021-08-30
  • 2021-08-15
  • 2021-07-02
  • 2021-12-12
  • 2021-06-24
相关资源
相似解决方案