题目
给定一个二叉树,找出其最大深度。
二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7]
,
返回它的最大深度 3 。
解答:感觉现在会做了。递归解决,最大深度 = max(左子树的最大深度,右子树的最大深度) + 1;
结束条件:根节点为空,直接return 0;
/**
* Definition for a binary tree node.
* public class TreeNode {
* int val;
* TreeNode left;
* TreeNode right;
* TreeNode(int x) { val = x; }
* }
*/
class Solution {
int result = 0;
public int maxDepth(TreeNode root) {
if (root == null) {
return 0;
}
result = Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
return result;
}
}
—————————————————————————————————————————————————————————2019.8.27更新:
添加Python实现(刷第二遍快多了, 直接一次过的)
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
def maxDepth(self, root: TreeNode) -> int:
if root == None:
return 0
return max(self.maxDepth(root.left), self.maxDepth(root.right)) + 1