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

559. Maximum Depth of N-ary Tree

时间:2018-10-11 11:35:39      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:imu   solution   style   深度   children   tco   ase   ptr   def   

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

标签:imu   solution   style   深度   children   tco   ase   ptr   def   

原文地址:https://www.cnblogs.com/agentgamer/p/9770939.html

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