题解 | #二叉树的深度#递归一行代码
二叉树的深度
http://www.nowcoder.com/practice/435fb86331474282a3499955f0a41e8b
public class Solution { public int TreeDepth(TreeNode root) { return root == null ? 0 : Math.max(TreeDepth(root.left), TreeDepth(root.right)) + 1; } }
递归,一行。