其他分享
首页 > 其他分享> > 【LeetCode】—— 二叉树的最大深度

【LeetCode】—— 二叉树的最大深度

作者:互联网

给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

说明: 叶子节点是指没有子节点的节点。

示例:
给定二叉树 [3,9,20,null,null,15,7],

3
/ \
9 20
/ \
15 7
返回它的最大深度 3 。

 1 class Solution {
 2     public int maxDepth(TreeNode root) {
 3         // 递归
 4         if(root == null){
 5             return 0;
 6         }else{
 7             int maxLeft = maxDepth(root.left);
 8             int maxRight = maxDepth(root.right);
 9             return Math.max(maxLeft,maxRight)+1;
10         }
11     }
12 }

 

解题关键:

递归法

标签:int,LeetCode,二叉树,深度,null,root,节点,maxDepth
来源: https://www.cnblogs.com/yumengshi/p/15527140.html