题目链接 104. 二叉树的最大深度 class Solution {public int maxDepth(TreeNode root) {if (root == null)return 0;return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;} } 小结:秒了!!!