首页
技术
登录
6mi
u
盘
搜
搜 索
技术
剑指offer T55 二叉树的深度
剑指offer T55 二叉树的深度
技术
2022-07-10
148
case1思想:后续遍历,一个树的深度 = max{左子树的深度,右子树的深度}+1 case2思想:利用层次遍历
class Solution { public int maxDepth(TreeNode root) { if(root==null) return 0; return Math.max(maxDepth(root.left),maxDepth(root.right))+1; } }
转载请注明原文地址:https://ipadbbs.8miu.com/read-7997.html
最新回复
(
0
)