LeetCode题解之Maximum Depth of N-ary Tree

1、题目描述

LeetCode题解之Maximum Depth of N-ary Tree

2、问题分析

利用递归fangf

3、代码

 int maxDepth(Node* root) {
int res = maxdep(root);
return res;
} int maxdep(Node *root)
{
if (root == NULL)
return ;
else {
int res = ;
for (auto child : root->children) {
res = max(res,maxdep(child)+);
}
return res;
}
}
上一篇:《SQL CookBook 》笔记-第一章-检索记录


下一篇:WPF 10天修炼 第五天- 内容控件