标签:title color blog 二叉树的深度 return logs nod 输入 div
public class Solution { public int TreeDepth(TreeNode pRoot){ return pRoot == null? 0 : Math.max(TreeDepth(pRoot.left),TreeDepth(pRoot.right)) + 1; } }
标签:title color blog 二叉树的深度 return logs nod 输入 div
原文地址:http://www.cnblogs.com/LoganChen/p/6486625.html