码迷,mamicode.com
首页 > 其他好文 > 详细

二叉树的最大深度

时间:2017-08-07 00:20:01      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:ges   ret   integer   max   nod   ima   blog   write   .com   

代码:


/**
* Definition of TreeNode:
* class TreeNode {
* public:
* int val;
* TreeNode *left, *right;
* TreeNode(int val) {
* this->val = val;
* this->left = this->right = NULL;
* }
* }
*/
class Solution {
public:
/**
* @param root: The root of binary tree.
* @return: An integer
*/
int height(TreeNode *root)
{
int lheight,rheight;
if(root==NULL) return 0;
lheight=height(root->left);//遍历左子树
rheight=height(root->right);//遍历右子树
if(lheight>rheight)//若左子树的深度大
return lheight+1;
else return rheight+1;
}
int maxDepth(TreeNode *root) {
// write your code here
return height(root);
}
};

截图:

技术分享

二叉树的最大深度

标签:ges   ret   integer   max   nod   ima   blog   write   .com   

原文地址:http://www.cnblogs.com/w1500802028/p/7296377.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!