力扣543. 二叉树的直径(java DFS解法)

Problem: 543. 二叉树的直径

文章目录

题目描述

给你一棵二叉树的根节点,返回该树的 直径 。

二叉树的 直径 是指树中任意两个节点之间最长路径的 长度 。这条路径可能经过也可能不经过根节点 root 。

两节点之间路径的 长度 由它们之间边数表示。

思路

本题目要求我们求取二叉树中最长的路径 ,可将其按递归 的思想分解成的最小子问题如下:

1.求取左子树的最长路径

2.求取右子树的最长路径

3.合并求取树的最长路径

解题方法

1.定义成员变量result记录最长"直径"

2.编写递归代码,依次得到左右子树的最长"直径"

3.将左右子树的最长"直径"合并得到当前的最长"直径",并与result比较更新

4.在归的过程中返回当前左右子树的最长路径加一(因为此时要回退到上一个节点,所以要加一!!!)

复杂度

时间复杂度:

O ( n ) O(n) O(n)

空间复杂度:

O ( h ) O(h) O(h) h h h为树的高度

Code

java 复制代码
/**
 * Definition for a binary tree node.
 * public 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;
 *     }
 * }
 */
class Solution {
    //Recode the longest diameter
    private int result = 0;

    /**
     * Gets the path length between any two nodes of a tree
     *
     * @param root The root node of a tree
     * @return int
     */
    public int diameterOfBinaryTree(TreeNode root) {
        claMaxHeight(root);
        return result;
    }

    /**
     * Recursively gets the longest path containing the root node
     *
     * @param root The root node of a tree
     * @return int
     */
    public int claMaxHeight(TreeNode root) {
        if (root == null) {
            return 0;
        }
        //Gets the longest path of the left and right subtree
        int maxLeftHeight = claMaxHeight(root.left);
        int maxRightHeight = claMaxHeight(root.right);
        //Get the longest path("diameter")
        int diameter = maxLeftHeight + maxRightHeight;
        //Update the longest path("diameter")
        if (diameter > result) {
            result = diameter;
        }
        return Math.max(maxLeftHeight, maxRightHeight) + 1;
    }
}
相关推荐
humors22120 分钟前
服务端开发案例(不定期更新)
java·数据库·后端·mysql·mybatis·excel
百***680429 分钟前
JavaWeb项目打包、部署至Tomcat并启动的全程指南(图文详解)
java·tomcat
庸子34 分钟前
Kubernetes调度器深度解析:从资源分配到亲和性策略的架构师之路
java·算法·云原生·贪心算法·kubernetes·devops
_Jimmy_2 小时前
Nacos的三层缓存是什么
java·缓存
朝新_2 小时前
【实战】动态 SQL + 统一 Result + 登录校验:图书管理系统(下)
xml·java·数据库·sql·mybatis
百***92022 小时前
java进阶1——JVM
java·开发语言·jvm
迦蓝叶3 小时前
RDF 与 RDFS:知识图谱推理的基石
java·人工智能·数据挖掘·知识图谱·语义网·rdf·rdfs
百锦再3 小时前
选择Rust的理由:从内存管理到抛弃抽象
android·java·开发语言·后端·python·rust·go
yaoxin5211233 小时前
238. Java 集合 - 使用 ListIterator 遍历 List 元素
java·python·list
爱分享的Shawn_Salt3 小时前
IntelliJ IDEA初始化指南
java·ide·intellij-idea