首页 > 其他 > 详细

LeetCode 面试题55 - I. 二叉树的深度

时间:2020-03-04 01:16:42      阅读:85      评论:0      收藏:0      [点我收藏+]

题目链接:https://leetcode-cn.com/problems/er-cha-shu-de-shen-du-lcof/

输入一棵二叉树的根节点,求该树的深度。从根节点到叶节点依次经过的节点(含根、叶节点)形成树的一条路径,最长路径的长度为树的深度。

例如:

给定二叉树 [3,9,20,null,null,15,7],

3
/ \
9 20
/ \
15 7
返回它的最大深度 3 。

 

提示:

节点总数 <= 10000

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     struct TreeNode *left;
 6  *     struct TreeNode *right;
 7  * };
 8  */
 9 
10 int maxDepth(struct TreeNode* root){
11     if(root==NULL) return 0;
12     int x=maxDepth(root->left)+1;
13     int y=maxDepth(root->right)+1;
14     return x>y?x:y;
15 }

 

LeetCode 面试题55 - I. 二叉树的深度

原文:https://www.cnblogs.com/shixinzei/p/12405434.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!