LeetCode559 N叉树的最大深度

Posted sykline

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode559 N叉树的最大深度相关的知识,希望对你有一定的参考价值。

题目:

 

 思路:

直接递归求解最大深度就可以,这里主要记录一下Java中比较获得两个数中最大值的方法。

import java.math.*;
class Solution {
    public int maxDepth(Node root) {
        if(root==null){
            return 0;
        }
        int deep = 0;
        for(int i=0; i<root.children.size(); i++){
            deep = Math.max(deep,maxDepth(root.children.get(i)));
        }
        return deep+1;
    }
}

以上是关于LeetCode559 N叉树的最大深度的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Algorithm 559. N 叉树的最大深度

LeetCode Algorithm 559. N 叉树的最大深度

LeetCode 559. N 叉树的最大深度

LeetCode559 N叉树的最大深度

559.N叉树的最大深度(LeetCode)

leetcode559 Python3 128ms N叉树的最大深度