题解 | #二叉树的深度#

二叉树的深度

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

# -*- coding:utf-8 -*-
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
class Solution:
    def TreeDepth(self, pRoot):
        # write code here
        return 1 + max(self.TreeDepth(pRoot.left), self.TreeDepth(pRoot.right)) if pRoot else 0
全部评论

相关推荐

点赞 收藏 评论
分享
牛客网
牛客企业服务