Binary tree of depth -python

Idea: using recursive thinking, constantly looking down the nodes, find a node plus 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

Guess you like

Origin www.cnblogs.com/dolisun/p/11330804.html