剑指Offer——二叉树的深度
Posted baoziy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指Offer——二叉树的深度相关的知识,希望对你有一定的参考价值。
1、题目描述
输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。
2、代码实现
public int TreeDepth(TreeNode root) if (root == null) return 0; int left_len = TreeDepth(root.left); int right_len = TreeDepth(root.right); return Math.max(left_len, right_len) + 1;
以上是关于剑指Offer——二叉树的深度的主要内容,如果未能解决你的问题,请参考以下文章