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

3.二叉树的最大深度

时间:2017-08-06 18:01:38      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:src   img   treenode   二叉树的深度   技术   bin   binary   image   png   

题目:

给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的距离。

技术分享

/**
 * 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 maxDepth(TreeNode *root) {
        // write your code here
        if (root == NULL) {
            return 0;
        }
        int left = maxDepth(root->left);
        int right = maxDepth(root->right);
        return (left > right) ? left + 1 : right + 1;
    }
};

3.二叉树的最大深度

标签:src   img   treenode   二叉树的深度   技术   bin   binary   image   png   

原文地址:http://www.cnblogs.com/ALIMAI2002/p/7206811.html

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