python求二叉树深度

Posted hchan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python求二叉树深度相关的知识,希望对你有一定的参考价值。

废话不多说 直接上代码

# 用于生生一个类似于二叉树的数据
class Node:
    def __init__(self, value=None, left=None, right=None):
        self.value = value
        self.left = left
        self.right = right


def tree_depth(tree):
    if tree is None:
        return 0
    left_depth = tree_depth(tree.left)
    right_depth = tree_depth(tree.right)
    return left_depth + 1 if left_depth > right_depth else right_depth + 1


trr = Node(‘D‘, left=Node(‘B‘, Node(‘A‘), Node(‘C‘)), right=Node(‘E‘, right=Node(‘G‘, Node(‘F‘))))
a = tree_depth(trr)

  

以上是关于python求二叉树深度的主要内容,如果未能解决你的问题,请参考以下文章

求二叉树的深度 python

求二叉树的深度代码实现

求二叉树的深度和广度算法

求二叉树的最大深度

求二叉树的深度

求二叉树的最大深度