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

Posted 1994july

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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/

以上是关于Leetcode(104)之二叉树的最大深度的主要内容,如果未能解决你的问题,请参考以下文章

[LeetCode] 104. 二叉树的最大深度

Leetcode104. 二叉树的最大深度(dfs)

Leetcode题目104.二叉树的最大深度(DFS+BFS简单)

leetcode 104. 二叉树的最大深度

⭐算法入门⭐《二叉树》简单04 —— LeetCode 104. 二叉树的最大深度

leetcode104 二叉树的最大深度(Easy)