Maximum Depth of N-ary Tree N叉树的最大深度

Posted liuqiujie

tags:

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

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

    Node() {}

    Node(int _val) {
        val = _val;
    }

    Node(int _val, vector<Node*> _children) {
        val = _val;
        children = _children;
    }
};
*/
class Solution {
public:
    int maxDepth(Node* root) {
        if(!root) return 0;
        int re=0;
        for(auto& child:root->children) {
            re=max(re,maxDepth(child));
        }
        return re+1;
    }
};

 

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

559. Maximum Depth of N-ary Tree

559. Maximum Depth of N-ary Tree

[LeetCode] 559. Maximum Depth of N-ary Tree

559. Maximum Depth of N-ary Tree

LeetCode559. Maximum Depth of N-ary Tree

559. Maximum Depth of N-ary Tree - LeetCode