问题描述:
给定一棵二叉树,你需要计算它的直径长度。一棵二叉树的直径长度是任意两个结点路径长度中的最大值。这条路径可能穿过也可能不穿过根结点。
示例 :
给定二叉树
1
/ \
2 3
/ \
4 5
返回 3, 它的长度是路径 [4,2,1,3] 或者 [5,2,1,3]。
解题思路:
所有节点中的(左子树深度+右子树的深度)的最大值就是树直径。
代码实现:
public class test543二叉树的直径 {
private int max;
public int diameterOfBinaryTree(TreeNode root) {
if(root ==null) return 0;
diameterOfBinaryTree(root.left);
diameterOfBinaryTree(root.right);
int l = deep(root.left);
int r = deep(root.right);
max = Math.max(max, l+r+1);
return max;
}
//计算一个节点的深度
private int deep(TreeNode root) {
if(root ==null) return 0;
return Math.max(deep(root.left)+1, deep(root.right)+1);
}
}
提交结果: