559. Maximum Depth of N-ary Tree

Posted agentgamer

tags:

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

https://leetcode.com/problems/maximum-depth-of-n-ary-tree/description/

非常简单的题目,连edge case 都没有。思路就是:最大深度 = 孩子的最大深度 + 1

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

    Node() {}

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

 

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

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 - LeetCode

559. Maximum Depth of N-ary Tree

LeetCode559. Maximum Depth of N-ary Tree