码迷,mamicode.com
首页 > 编程语言 > 详细

二叉树的深度-python

时间:2019-08-10 11:45:34      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:pytho   节点   class   二叉树的深度   val   return   init   tree   pre   

思路:用递归思想,不停往下找节点,找到一个节点加1

# -*- 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
        if pRoot == None:
            return 0
        left = self.TreeDepth(pRoot.left)
        right = self.TreeDepth(pRoot.right)
        return max(left, right) + 1

二叉树的深度-python

标签:pytho   节点   class   二叉树的深度   val   return   init   tree   pre   

原文地址:https://www.cnblogs.com/dolisun/p/11330804.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!