力扣-559. N 叉树的最大深度
559. N 叉树的最大深度
AC Code
class Solution {
public:
int maxDepth(Node* root) {
if(!root) return 0;
int num = 1;
for(Node* item : root->children){
num = max(num,maxDepth(item)+1);
}
return num;
}
};
共有 0 条评论