标签:
public int TreeDepth(TreeNode pRoot) { if(pRoot == null) return 0; return Math.max(TreeDepth(pRoot.left),TreeDepth(pRoot.right))+1; }
二叉树的深度
原文地址:http://www.cnblogs.com/yingpu/p/5828490.html