1、题目描述
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;
}
}