104. 二叉树的最大深度 Me func Max(TN1, TN2 int) int { if TN1 >= TN2 { return TN1 + 1 } else { return TN2 + 1 } } func maxDepth(root *TreeNode) int { if nil == root { return 0 } return Max(maxDepth(root.Left), maxDepth(root.Right)) }