剑指offer二叉树的深度_solution2

Posted lettleshel

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer二叉树的深度_solution2相关的知识,希望对你有一定的参考价值。

 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         return getHeight(pRoot);
15     }
16     int getHeight(TreeNode *r) {
17         if (r == NULL)
18             return 0;
19         return max(getHeight(r->left), getHeight(r->right))+1;
20     }
21 };

 Notes: algorithm头文件下的常用函数max(),min(),abs()

#include<algorithm>

using namespace std; //头文件下加这一行,方能正常使用

以上是关于剑指offer二叉树的深度_solution2的主要内容,如果未能解决你的问题,请参考以下文章

剑指offer python版 二叉树的深度

剑指Offer 二叉树的深度

剑指offer 38.二叉树的深度

剑指OFFER 二叉树的深度

剑指Offer38:二叉树的深度(Java)

剑指Offer——二叉树的深度