leetcode 【每日一题】二叉树的直径 Java

题干

给定一棵二叉树,你需要计算它的直径长度。一棵二叉树的直径长度是任意两个结点路径长度中的最大值。这条路径可能穿过根结点。

示例 :
给定二叉树

          1
         / \
        2   3
       / \     
      4   5    
返回 3, 它的长度是路径 [4,2,1,3] 或者 [5,2,1,3]。

注意:两结点之间的路径长度是以它们之间边的数目表示。

想法

树 当然递归
但是这道题有个容易错的地方是:
最长路径不一定过根节点 因为可能在左子树的某一个节点就是最长
其他的看代码很好看懂
长度就是左右孩子深度相加
因为 长度是边数

注意叶子结点深度为1

Java代码

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
 //叶子结点深度为1
class Solution {
    int path =0;
    public int diameterOfBinaryTree(TreeNode root) {
        helper(root);
        return path;
    }

    public int  helper(TreeNode tem){
      if(tem==null) {
          return 0;
      }
      int left=helper(tem.left);
      int right=helper(tem.right);
       path= Math.max(left+right,path);//更新最长路径 是否是左子树深+右子树深度
      return Math.max(left,right)+1;//更新根节点深度

    }
}

我的leetcode代码已经上传到leetcode

你可能感兴趣的:(leetcode刷题)