public class Solution {
public int maxDepth(TreeNode root) {
if (root == null) return 0;
return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
}
}
Leetcode 104. Maximum Depth of Binary Tree
最新推荐文章于 2023-11-09 13:10:38 发布