leetcode559. N叉树的最大深度
【摘要】 给定一个 N 叉树,找到其最大深度。
最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。
例如,给定一个 3叉树 :
我们应返回其最大深度,3。
说明:
树的深度不会超过 1000。 树的节点总不会超过 5000。
思路见代码
/*// Definition...
给定一个 N 叉树,找到其最大深度。
最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。
例如,给定一个 3叉树 :
我们应返回其最大深度,3。
说明:
树的深度不会超过 1000。
树的节点总不会超过 5000。
思路见代码
-
/*
-
// Definition for a Node.
-
class Node {
-
public int val;
-
public List<Node> children;
-
-
public Node() {}
-
-
public Node(int _val) {
-
val = _val;
-
}
-
-
public Node(int _val, List<Node> _children) {
-
val = _val;
-
children = _children;
-
}
-
};
-
*/
-
-
class Solution {
-
public int maxDepth(Node root) {
-
-
if (root == null) {//空了
-
return 0;
-
} else if (root.children.isEmpty()) {//没孩子了
-
return 1;
-
} else {//遍历孩子
-
List<Integer> heights = new LinkedList<>();
-
for (Node item : root.children) {
-
heights.add(maxDepth(item));
-
}
-
return Collections.max(heights) + 1;
-
}
-
}
-
}
文章来源: fantianzuo.blog.csdn.net,作者:兔老大RabbitMQ,版权归原作者所有,如需转载,请联系作者。
原文链接:fantianzuo.blog.csdn.net/article/details/107450536
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)