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

剑指offer (39) 二叉树深度

时间:2014-06-27 15:58:59      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   color   for   

题目:输入一棵二叉树的根节点,求该树的深度

题解分析:

二叉树具有天然的递归性,首先应该想递归解法

/**
 * Definition for binary tree
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int maxDepth(TreeNode *root) {
        if (root == NULL) return 0;
        return max(maxDepth(root->left), maxDepth(root->right)) + 1;
    }
};

 

剑指offer (39) 二叉树深度,布布扣,bubuko.com

剑指offer (39) 二叉树深度

标签:style   class   blog   code   color   for   

原文地址:http://www.cnblogs.com/wwwjieo0/p/3810163.html

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