559. N叉树的最大深度
2020-07-07 本文已影响0人
来到了没有知识的荒原
559. N叉树的最大深度
/*
// Definition for a Node.
class Node {
public:
int val;
vector<Node*> children;
Node() {}
Node(int _val) {
val = _val;
}
Node(int _val, vector<Node*> _children) {
val = _val;
children = _children;
}
};
*/
class Solution {
public:
int maxDepth(Node* root) {
if(!root)return 0;
int res=0;
for(auto child:root->children){
res=max(res,maxDepth(child));
}
return res+1;
}
};