剑指offer No.38 二叉树的深度

2022-11-26 11:02:54 浏览数 (1)

输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。

代码语言:javascript复制
package offer.TreeDepth;

public class Solution {
    public int TreeDepth(TreeNode root) {
        int d=depthRecursion(root,0);
        return d;
    }
    public  int depthRecursion(TreeNode root,int depth){
        if(root==null){
            return depth;
        }else{
            int left=depthRecursion(root.left,depth 1);
            int right=depthRecursion(root.right,depth 1);
            return Math.max(left,right);
        }
    }
}

0 人点赞