LeetCode104 二叉树的最大深度 2019-12-20 本文已影响0人 洛珎 题目: 思路: 首先,终止条件为根节点为空; 根节点不为空时,节点高度=Max(root.left,root.right)+1 代码实现: 代码实现: LeetCode104 二叉树的最大深度