LeetCode刷题记37
104. 二叉树的最大深度
题目
10/10
/**
* 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;
}
return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
}
最后一个,撒花~
刚刚序号搞错了,又从前面一篇篇改过来。。时间线都乱了。今天做了11题。
明天要写大作业可能时间上只能做一个或者俩个。
今天为了那个十题的目标,把简单题刷了好几遍。。。没意思。
有点浮躁。
37/150