• LeetCode算法二叉树—236. 二叉树的最近公共祖先


    目录

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

    代码:

    运行结果: 


    给定一个二叉树, 找到该树中两个指定节点的最近公共祖先。

    百度百科最近公共祖先的定义为:“对于有根树 T 的两个节点 p、q,最近公共祖先表示为一个节点 x,满足 x 是 p、q 的祖先且 x 的深度尽可能大(一个节点也可以是它自己的祖先)。”

    示例 1:

    输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 1
    输出:3
    解释:节点 5 和节点 1 的最近公共祖先是节点 3
    

    示例 2:

    输入:root = [3,5,1,6,2,0,8,null,null,7,4], p = 5, q = 4
    输出:5
    解释:节点 5 和节点 4 的最近公共祖先是节点 5因为根据定义最近公共祖先节点可以为节点本身。
    

    示例 3:

    输入:root = [1,2], p = 1, q = 2
    输出:1
    

    提示:

    • 树中节点数目在范围 [2, 105] 内。
    • -109 <= Node.val <= 109
    • 所有 Node.val 互不相同 。
    • p != q
    • p 和 q 均存在于给定的二叉树中。

    代码:

    1. /**
    2. * Definition for a binary tree node.
    3. * public class TreeNode {
    4. * int val;
    5. * TreeNode left;
    6. * TreeNode right;
    7. * TreeNode(int x) { val = x; }
    8. * }
    9. */
    10. class Solution {
    11. public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
    12. // p=root ,则 q 在 root 的左或右子树中;
    13. // q=root ,则 p 在 root 的左或右子树中;
    14. // 即题目提示:一个节点也可以是它自己的祖先
    15. if(root==null||root==p||root==q) return root;
    16. // 不是则让左右节点继续往下递归,在本层递归看来这步是给left赋值,看看有没有p,q在左子树上
    17. TreeNode left=lowestCommonAncestor(root.left,p,q);
    18. // 与上一步一样
    19. TreeNode right=lowestCommonAncestor(root.right,p,q);
    20. // 如果left 和 right都不为空,说明此时root就是最近公共节点
    21. // 如果left为空,right不为空,就返回right,说明目标节点是通过right返回的,反之亦然
    22. if(left != null && right != null) return root;
    23. if(left==null) return right;
    24. return left;
    25. }
    26. }

    运行结果: 

  • 相关阅读:
    Threejs入门教程
    2022年10月30:rabbitmq学习、springboot整合rabbitmq
    Python游戏嗷大喵快跑设计
    微信小程序开发引入RUM,实现小程序监控
    Git学习笔记7
    Windows安装ElasticSearch
    成都瀚网科技有限公司:怎么优化抖店体验分?
    facebook引流软件需要具备什么功能
    Python 机器学习入门之ID3决策树算法
    使用 Docker 搭建 Jenkins CI/CD 环境
  • 原文地址:https://blog.csdn.net/qq_62799214/article/details/133378792