Leetcode(104)之二叉树的最大深度

题目描述:

解题思路:

代码:

public int MaxDepth(TreeNode root) { if (root == null) return 0; return Mathf.Max(MaxDepth(root.left) + 1, MaxDepth(root.right) + 1); }
来源:http://www.1994july.club/

猜你喜欢

转载自www.cnblogs.com/1994july/p/12148847.html