题解 | #牛群的最短路径#
牛群的最短路径
https://www.nowcoder.com/practice/c07472106bfe430b8e2f55125d817358
-
题目考察的知识点:二叉树的遍历
-
题目解答方法的文字分析:
返回递归遍历二叉树的左边和遍历二叉树的右边深最小值。
对于非叶子节点需对左右孩子判断,只返回不为空的节点。
节点为空放回0。
-
本题解析所用的编程语言:java
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 minDepth (TreeNode root) {
// write code here
if (root == null) return 0;
if(root.left == null && root.right != null) return minDepth(root.right) + 1;
if(root.right == null && root.left != null) return minDepth(root.left) + 1;
return Math.min(minDepth(root.left) + 1, minDepth(root.right) + 1);
}
}
