首页 > 其他 > 详细

LeetCode236. 二叉树的最近公共祖先

时间:2020-12-25 21:23:15      阅读:37      评论:0      收藏:0      [点我收藏+]

技术分享图片

 

☆☆☆思路:经典的LCA问题

class Solution {
    public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
        if (root == null) return null;
        if (p == root || q == root) return root;
        TreeNode left = lowestCommonAncestor(root.left, p, q);
        TreeNode right = lowestCommonAncestor(root.right, p, q);
        if (left != null && right != null) return root; // p 和 q在不同的子树中
        if (left != null) return left;
        if (right != null) return right;
        return null;
    }
}

 

LeetCode236. 二叉树的最近公共祖先

原文:https://www.cnblogs.com/HuangYJ/p/14189514.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!