首页 > 学院 > 开发设计 > 正文

二叉树深度

2019-11-10 20:22:31
字体:
来源:转载
供稿:网友

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

IDEA

DFS遍历,左右递归返回左右子树最长的

CODE

/**public class TreeNode {    int val = 0;    TreeNode left = null;    TreeNode right = null;    public TreeNode(int val) {        this.val = val;    }}*/public class Solution {    public int TreeDepth(TreeNode root) {        if(root==null){            return 0;        }        int num_left=TreeDepth(root.left);        int num_right=TreeDepth(root.right);        return num_left>num_right?(num_left+1):(num_right+1);    }}


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表