剑指offer题目:输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。
思路:深度使用递归
# -*- 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
#递归函数,调用solution
leftDepth= Solution.TreeDepth(self,pRoot.left);
rightDepth= Solution.TreeDepth(self,pRoot.right);
if leftDepth>rightDepth:
return leftDepth+1
else: return rightDepth+1
本文介绍了一道来自剑指Offer的编程题:如何计算一棵二叉树的深度。通过递归的方法实现了二叉树深度的计算,并提供了完整的Python代码实现。

1132

被折叠的 条评论
为什么被折叠?



