当前位置: 首页 > article >正文

【Hot100】LeetCode—236. 二叉树的最近公共祖先

目录

  • 1- 思路
    • 递归 + 自底向上
  • 2- 实现
    • ⭐236. 二叉树的最近公共祖先——题解思路
  • 3- ACM 实现


  • 题目连接:236. 二叉树的最近公共祖先

1- 思路

递归 + 自底向上

① 自底向上的逻辑的话

  • 需要采用后续遍历的方式,最后处理中间结点

② 递归

  • 2.1 参数和返回值
    • 返回值为 TreeNode,参数为 root==null || root == p || root == q

image.png

  • 2.3 遍历逻辑(后续遍历:左右中)

2- 实现

⭐236. 二叉树的最近公共祖先——题解思路

在这里插入图片描述

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
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==null && right==null){
            return null;
        }else if (left!=null && right==null){
            return left;
        }else if(left==null && right!=null){
            return right;
        }else{
            return root;
        }

    }
}

3- ACM 实现

public class commonAncestor {

    public static class TreeNode {
        int val;
        TreeNode left;
        TreeNode right;

        TreeNode() {
        }

        TreeNode(int val) {
            this.val = val;
        }

        TreeNode(int val, TreeNode left, TreeNode right) {
            this.val = val;
            this.left = left;
            this.right = right;
        }
    }

    public static TreeNode build(String str) {
        if (str == null || str.length() == 0) {
            return null;
        }
        String input = str.replace("[", "");
        input = input.replace("]", "");
        String[] parts = input.split(",");

        Integer[] nums = new Integer[parts.length];
        for (int i = 0; i < parts.length; i++) {
            if (!parts[i].equals("null")) {
                nums[i] = Integer.parseInt(parts[i]);
            } else {
                nums[i] = null;
            }
        }
        Queue<TreeNode> queue = new LinkedList<>();
        TreeNode root = new TreeNode(nums[0]);
        queue.offer(root);
        int index = 1;
        while (!queue.isEmpty() && index < parts.length) {
            TreeNode node = queue.poll();
            if (index < nums.length && nums[index] != null) {
                node.left = new TreeNode(nums[index]);
                queue.offer(node.left);
            }
            index++;
            if (index < nums.length && nums[index] != null) {
                node.right = new TreeNode(nums[index]);
                queue.offer(node.right);
            }
            index++;
        }
        return root;
    }
    public static TreeNode findNode(TreeNode root, int val) {
        if (root == null) {
            return null;
        }
        if (root.val == val) {
            return root;
        }
        TreeNode leftResult = findNode(root.left, val);
        if (leftResult != null) {
            return leftResult;
        }
        return findNode(root.right, val);
    }
    public static 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==null && right==null){
            return null;
        }else if (left!=null && right==null){
            return left;
        }else if(left==null && right!=null){
            return right;
        }else{
            return root;
        }

    }

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String input = sc.nextLine();
        TreeNode root = build(input);
        // 读取p和q的值
        int pVal = sc.nextInt();
        int qVal = sc.nextInt();
        TreeNode p = findNode(root,pVal);
        TreeNode q = findNode(root,qVal);
        TreeNode res = lowestCommonAncestor(root,p,q);
        System.out.println("结果是"+res.val);
    }
}

http://www.kler.cn/a/282391.html

相关文章:

  • python实现十进制转换二进制,tkinter界面
  • 狼蛛F87Pro键盘常用快捷键的使用说明
  • FPGA使用Verilog实现CAN通信
  • 前后端、网关、协议方面补充
  • 【C语言指南】C语言内存管理 深度解析
  • 大模型基础BERT——Transformers的双向编码器表示
  • 【Go高性能】测试(单元测试、基准测试)
  • 携程:从MySQL迁移OceanBase的数据库发布系统实践
  • VMware安装Win10系统后,启动系统提示不支持的处理器,怎么解决
  • LVS部署——DR集群
  • 【区块链 + 司法存证】区块链存证仲裁平台 | FISCO BCOS应用案例
  • 力扣8.29
  • 获取项目中的后缀josn文档,转成JSON格式
  • R语言中theme的调整技巧汇总-持续更新
  • Challenge——spfa
  • USB5834数据采集卡30路模拟量采集卡DAQ卡——阿尔泰科技
  • 本地生活本地推软件有哪些?使用过程中需要关注哪些要点?
  • 三分钟总结开源流程表单的优势特点
  • C语言—字符函数和字符串函数
  • 应急响应--日志分析
  • YOLO | YOLO目标检测算法(YOLO-V1)
  • 浙大联合港中深发布AI医疗最新报告,全面审视「虚拟现实+人工智能」
  • 基于 ASP.NET的教材管理信息系统的设计与实现(最新定制开发,阿龙原创设计)✅
  • 深入理解Spring Security
  • C语言 | Leetcode C语言题解之第382题链表随机节点
  • 直播电商如何实现精细化运营,破除流量互卷的困境?