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

【树】N叉树的最大深度

时间:2020-05-03 15:03:26      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:++   div   struct   vector   turn   pre   cto   solution   col   

题目:

技术图片

 

 

解答:

 1 /*
 2 // Definition for a Node.
 3 class Node {
 4 public:
 5     int val;
 6     vector<Node*> children;
 7 
 8     Node() {}
 9 
10     Node(int _val) {
11         val = _val;
12     }
13 
14     Node(int _val, vector<Node*> _children) {
15         val = _val;
16         children = _children;
17     }
18 };
19 */
20 
21 class Solution {
22 public:
23     
24     int maxDepth(struct Node* root)
25     {
26         if(!root) 
27         {
28             return 0;
29         }
30 
31         int max = 0;
32         for(int i = 0; i < root->children.size(); i++)
33         {
34             int temp = maxDepth(root->children[i]);
35             max = max > temp ? max : temp;
36         }
37         return max + 1;
38     }
39 };

 

【树】N叉树的最大深度

标签:++   div   struct   vector   turn   pre   cto   solution   col   

原文地址:https://www.cnblogs.com/ocpc/p/12821697.html

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