class Solution {
public:
int maxDepth(TreeNode* root) {
if(!root){
return 0;
}
return max(maxDepth(root->left),maxDepth(root->right))+1;
}
};
剑指Offer 55-I.二叉树的深度
最新推荐文章于 2023-02-27 15:00:50 发布