给定一个二叉树,找出其最大深度。
二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7]
,
3 / \ 9 20 / \ 15 7
返回它的最大深度 3 。
解题思路:利用递归
1. 如果是空节点,深度为0,如果只有根节点,那深度就是1
2.实际上,就是从根节点开始,进行统计,根节点深度是1,然后根节点的左子树和右子树的深度的最大值,加上根节点这个深度1,就是当前树的深度。
3. 利用递归计算根节点的左子树和右子树的深度,并比较其最大值,保留最大值返回。
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
public int maxDepth(TreeNode root) {
if(root==null) return 0;
if(root.left == null && root.right==null) {
return 1;
}
int left = maxDepth(root.left);
int right = maxDepth(root.right);
return 1+ (left>right ? left:right);
}
}