码迷,mamicode.com
首页 > 其他好文 > 详细

559. Maximum Depth of N-ary Tree - LeetCode

时间:2018-08-31 21:07:35      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:ret   rip   return   深度   src   class   root   ini   img   

Question

559. Maximum Depth of N-ary Tree

技术分享图片

Solution

题目大意:N叉树求最大深度

思路:用递归做,树的深度 = 1 + 子树最大深度

Java实现:

/*
// Definition for a Node.
class Node {
    public int val;
    public List<Node> children;

    public Node() {}

    public Node(int _val,List<Node> _children) {
        val = _val;
        children = _children;
    }
};
*/
class Solution {
    public int maxDepth(Node root) {
        if(root == null) return 0;
        int depth = 0;
        for (Node child : root.children) {
            depth = Math.max(depth, maxDepth(child));
        }
        return depth + 1;
    }
}

559. Maximum Depth of N-ary Tree - LeetCode

标签:ret   rip   return   深度   src   class   root   ini   img   

原文地址:https://www.cnblogs.com/okokabcd/p/9567359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!