parent
55ddae77fc
commit
6a3cb5f17c
@ -1,48 +0,0 @@
|
|||||||
package 第03期.mca_03;
|
|
||||||
|
|
||||||
// 给定一棵二叉树,你需要计算它的直径长度
|
|
||||||
// 一棵二叉树的直径长度是任意两个结点路径长度中的最大值
|
|
||||||
// 这条路径可能穿过也可能不穿过根结点
|
|
||||||
// 测试链接 : https://leetcode.cn/problems/diameter-of-binary-tree/
|
|
||||||
public class Code08_DiameterOfBinaryTree {
|
|
||||||
|
|
||||||
// 提交时不要提交这个类
|
|
||||||
public static class TreeNode {
|
|
||||||
public int val;
|
|
||||||
public TreeNode left;
|
|
||||||
public TreeNode right;
|
|
||||||
|
|
||||||
public TreeNode(int value) {
|
|
||||||
val = value;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// 提交以下的方法
|
|
||||||
public static int diameterOfBinaryTree(TreeNode root) {
|
|
||||||
return process(root).maxDistance;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static class Info {
|
|
||||||
public int maxDistance;
|
|
||||||
public int height;
|
|
||||||
|
|
||||||
public Info(int m, int h) {
|
|
||||||
maxDistance = m;
|
|
||||||
height = h;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Info process(TreeNode x) {
|
|
||||||
if (x == null) {
|
|
||||||
return new Info(0, 0);
|
|
||||||
}
|
|
||||||
Info leftInfo = process(x.left);
|
|
||||||
Info rightInfo = process(x.right);
|
|
||||||
int height = Math.max(leftInfo.height, rightInfo.height) + 1;
|
|
||||||
int p1 = Math.max(leftInfo.maxDistance, rightInfo.maxDistance);
|
|
||||||
int p2 = leftInfo.height + rightInfo.height;
|
|
||||||
int maxDistance = Math.max(p1, p2);
|
|
||||||
return new Info(maxDistance, height);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
Loading…
Reference in new issue