m******d 发帖数: 75 | 1 【 以下文字转载自 JobHunting 讨论区 】
发信人: mltbbsid (V~), 信区: JobHunting
标 题: leetcode 一题
发信站: BBS 未名空间站 (Tue Jul 8 14:51:01 2014, 美东)
不知在这问合时不?
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的概念理解有错吗? | i*********t 发帖数: 23 | |
|