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

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

时间:2020-03-16 17:35:43      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:div   child   最大   pre   nbsp   children   nod   tor   class   

/*
// 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叉树的最大深度

标签:div   child   最大   pre   nbsp   children   nod   tor   class   

原文地址:https://www.cnblogs.com/LiuQiujie/p/12505225.html

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