559. N 叉树的最大深度

给定一个 N 叉树,找到其最大深度。spa

最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。code

例如,给定一个 3叉树 :blog

 

 

 

 

咱们应返回其最大深度,3。it

说明:io

树的深度不会超过 1000。
树的节点总不会超过 5000。class

题解:遍历每一颗子树便可遍历

class Solution {
    public int maxDepth(Node root) {
        if(root == null) return 0;
        int max = 1;
        int dep = 0;
        Iterator<Node> iterator = root.children.iterator();
        while(iterator.hasNext()){
            dep = maxDepth(iterator.next())+1;
            max = max > dep ? max : dep;
            dep = 0;
        }
        return max;
    }
}
相关文章
相关标签/搜索