[求教] 现在relink还是等一段时间# EB23 - 劳工卡
m*d
1 楼
不知在这问合时不?
Maximum Depth of Binary Tree
int maxDepth(TreeNode *root) {
if (root == NULL) return 0;
return max(maxDepth(root->left), maxDepth(root->right)) +1;
}
这个accept了, 可是感觉每个depth都多了 1, 比如,只有一个node的tree,理论上
depth应该是0吧,我对depth的概念理解有错吗?
Maximum Depth of Binary Tree
int maxDepth(TreeNode *root) {
if (root == NULL) return 0;
return max(maxDepth(root->left), maxDepth(root->right)) +1;
}
这个accept了, 可是感觉每个depth都多了 1, 比如,只有一个node的tree,理论上
depth应该是0吧,我对depth的概念理解有错吗?