二叉树的最大深度
程序员文章站
2022-05-06 22:46:23
...
/**
* 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;
}
int left = maxDepth(root.left);
int right = maxDepth(root.right);
if(left > right){
return left + 1;
}else{
return right + 1;
}
}
}
上一篇: 清朝在京城当官的工资有多高 他们一年能够拿到多少俸禄
下一篇: 3dsmax怎么快速建模推拉门?