题解 | #二叉树的深度#

二叉树的深度

https://www.nowcoder.com/practice/435fb86331474282a3499955f0a41e8b

。。。

class Solution {
public:
    int TreeDepth(TreeNode* pRoot) {
		if (!pRoot) return 0;
		return max(TreeDepth(pRoot->left), TreeDepth(pRoot->right)) + 1;
    }
};

全部评论

相关推荐

jack_miller:我给我们导员说我不在这里转正,可能没三方签了。导员说没事学校催的时候帮我想办法应付一下
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务