已经是最新一篇文章了!
已经是最后一篇文章了!
55.1 二叉树的深度
不经一番寒彻骨,怎得梅花扑鼻香。
55.1 二叉树的深度
题目描述
从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。
解题思路
public int TreeDepth(TreeNode root) {
return root == null ? 0 : 1 + Math.max(TreeDepth(root.left), TreeDepth(root.right));
}
版权声明:如无特别声明,本站收集的文章归 cs-notes 所有。 如有侵权,请联系删除。
联系邮箱: GenshinTimeStamp@outlook.com
本文标题:《 55.1 二叉树的深度 》