leetcode-面试题55 - I. 二叉树的深度

//    面试题55 - I. 二叉树的深度
//    输入一棵二叉树的根节点,求该树的深度。从根节点到叶节点依次经过的节点(含根、叶节点)形成树的一条路径,最长路径的长度为树的深度。
//    例如:
//    给定二叉树 [3,9,20,null,null,15,7],
//
//            3
//            / \
//            9  20
//            /  \
//            15   7
//    返回它的最大深度 3 。
//    来源:力扣(LeetCode)
//    链接:https://leetcode-cn.com/problems/er-cha-shu-de-shen-du-lcof
    public class TreeNode {
        int val;
        TreeNode left;
        TreeNode right;

        TreeNode(int x) {
            val = x;
        }
    }
    //  递归:左右节点最大值+1
    public int maxDepth(TreeNode root) {
        if(root==null) return 0;
        return 1+Math.max(maxDepth(root.left),maxDepth(root.right));
    }

你可能感兴趣的:(leetcode,算法,leetcode,二叉树)