class Solution {
public int maxDepth(TreeNode root) {
if(root==null){
return 0;
}
else{
int leftTreeDepth=maxDepth(root.left);
int rightTreeDepth=maxDepth(root.right);
return java.lang.Math.max(leftTreeDepth,rightTreeDepth)+1;
}
}
}
解题思路
解决最大深度就是看左/右子树最深能到多深,那么就直接设两个成员变量作为两者的深度,然后直接调用Math.max(a,b)函数,然后就知道a,b哪个更大,最后要注意得到的值要+1,应该一开始定义树的深度为1