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

Leetcode | 104. 二叉树的最大深度

时间:2018-09-19 22:00:10      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:void   etc   treenode   roo   turn   代码   深度   nod   efi   

题目

 测试代码

 1 /**
 2  * Definition for a binary tree node.
 3  * struct TreeNode {
 4  *     int val;
 5  *     TreeNode *left;
 6  *     TreeNode *right;
 7  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 8  * };
 9  */
10 class Solution {
11 public:
12     int maxDepth(TreeNode* root) 
13     {
14         if(!root)
15             return 0;
16         int count = 0;
17         int nums = 0;
18         dfs(root, count, nums);
19         return nums;              
20     }
21     
22     void dfs(TreeNode *root, int count, int &nums)
23     {
24         ++count;
25         if(count > nums)
26             nums = count;
27         if(!root->left && !root->right)
28             return;
29         if(root->left)
30             dfs(root->left, count, nums);
31         if(root->right)
32             dfs(root->right, count, nums);          
33     }
34 };

 

 

 测试代码

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

 

Leetcode | 104. 二叉树的最大深度

标签:void   etc   treenode   roo   turn   代码   深度   nod   efi   

原文地址:https://www.cnblogs.com/sunbines/p/9676736.html

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