39-1 二叉树深度

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

C++:

 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         return max(TreeDepth(pRoot->left) , TreeDepth(pRoot->right)) + 1 ;
17     }
18 };

猜你喜欢

转载自www.cnblogs.com/mengchunchen/p/9021108.html