题解 | #牛群的最大高度#
牛群的最大高度
https://www.nowcoder.com/practice/f745023c5ac641c9914a59377dacdacf
import java.util.*;
/*
* public class TreeNode {
* int val = 0;
* TreeNode left = null;
* TreeNode right = null;
* public TreeNode(int val) {
* this.val = val;
* }
* }
*/
public class Solution {
/**
* 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
*
*
* @param root TreeNode类
* @return int整型
*/
public int findMaxHeight (TreeNode root) {
// (1):root为Null表示空节点,值为0
if (root == null) {
return 0;
}
// (2):选出较大的高度的牛作为返回的结果
int val = root.val;
int left = findMaxHeight(root.left);
if (left >= val) {
val = left;
}
int right = findMaxHeight(root.right);
if (right >= val) {
val = right;
}
return val;
}
}