★543. 二叉树的直径

543. 二叉树的直径

简单题,确实不难。

相当于就是求节点的深度。左孩子的最大深度 + 右孩子的最大深度 + 1 = 根节点深度。

本题要求的就是路径数,这里的路径数 = 节点数 - 1,然后想一下,对于一个节点来说,以他为根左右两边两边最长路径就是左孩子深度 + 右孩子深度。(这里的路径等于根节点深度 - 1嘛)

所以就是跑一个求深度的递归,然后每次都更新一下以当前节点为根的左右孩子深度和。

这个左右孩子的深度和就是所要求的路径长度。再 + 1 就是经过的节点个数,即以当前节点为根的深度。

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 {
    int max = 0;
    public int diameterOfBinaryTree(TreeNode root) {
        depth(root);
        return max;
    }
    public int depth(TreeNode root){
        if(root == null) return 0;
        int left = depth(root.left);
        int right = depth(root.right);
        if(max < left + right)      //这里这个max就是不加上根节点的节点个数,也等于路径个数。
            max = left + right;
        return Math.max(left, right) + 1;
    }
}
相关推荐
玖玥拾8 小时前
LeetCode 392 判断子序列
笔记·算法·leetcode
重生之后端学习9 小时前
239. 滑动窗口最大值[困难]✅
java·数据结构·算法·leetcode·职场和发展
INGNIGHT17 小时前
1584.连接所有点的最小费用(最小生成树&并查集union find)
c++·leetcode
wabs66617 小时前
关于二叉树【力扣144.二叉树的前序遍历的思考】
数据结构·c++·算法·leetcode·二叉树
Xin7701 天前
LeetCode 23.合并 K 个升序链表(分治递归)
leetcode
Nil2081 天前
leetcode 105从前序和中序遍历序列构造二叉树
算法·leetcode·职场和发展
Nil2081 天前
leetcode 114二叉树展开为链表
leetcode·链表·深度优先
cz07102 天前
hot100_搜索二维矩阵 II
算法·leetcode
圣保罗的大教堂2 天前
leetcode 3718. 缺失的最小倍数 简单
leetcode
青 春 记 忆2 天前
LeetCode 234. 回文链表|Python 解法详解
python·leetcode·链表