二叉树的深度

输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。

 1 /*
 2 struct TreeNode {
 3     int val;
 4     struct TreeNode *left;
 5     struct TreeNode *right;
 6     TreeNode(int x) :
 7             val(x), left(NULL), right(NULL) {
 8     }
 9 };*/
10 class Solution {
11 public:
12     int TreeDepth(TreeNode* pRoot)
13     {
14         if(pRoot == NULL)
15             return 0;
16         int cnt1 = TreeDepth(pRoot->left);
17         int cnt2 = TreeDepth(pRoot->right);
18         return cnt1 > cnt2 ? cnt1 +1 : cnt2+1;
19     }
20 };
原文地址:https://www.cnblogs.com/xiaoyesoso/p/5160134.html