543. Diameter of Binary Tree

Posted skillking

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了543. Diameter of Binary Tree相关的知识,希望对你有一定的参考价值。

一、题目

  1、审题 

技术图片

 

  2、分析

    求一棵二叉树中两个节点最远的距离。

 

二、解答

  ① 采用全局变量 max 记录两个节点之间最远的距离

    

    int max = 0;
    public int diameterOfBinaryTree(TreeNode root) {
        maxDepth(root);
        return max;
    }
    
    private int maxDepth(TreeNode root) {
        if(root == null)
            return 0;
        
        int left = maxDepth(root.left);
        int right = maxDepth(root.right);
        max = Math.max(max, left + right);
        return Math.max(left, right) + 1;
    }

 

以上是关于543. Diameter of Binary Tree的主要内容,如果未能解决你的问题,请参考以下文章

543. Diameter of Binary Tree

Leetcode-543-Diameter of Binary Tree

543. Diameter of Binary Tree

543. Diameter of Binary Tree

543. Diameter of Binary Tree

543. Diameter of Binary Tree