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

剑指Offer——①二叉树的深度

时间:2018-05-24 18:19:44      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:str   col   max   tree   dep   路径   root   div   ret   

时间限制:1秒 空间限制:32768K 

题目描述

输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。
 
/*
struct TreeNode {
    int val;
    struct TreeNode *left;
    struct TreeNode *right;
    TreeNode(int x) :
            val(x), left(NULL), right(NULL) {
    }
};*/
class Solution {
public:
    int TreeDepth(TreeNode* pRoot)
    {
        if(!pRoot)
            return 0;
        int leftDepth=TreeDepth(pRoot->left);
        int rightDepth=TreeDepth(pRoot->right);
        int Depth=max(leftDepth,rightDepth);
        return(Depth+1);
    }
};

 

剑指Offer——①二叉树的深度

标签:str   col   max   tree   dep   路径   root   div   ret   

原文地址:https://www.cnblogs.com/luyalin/p/9083798.html

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