LeetCode – Refresh – Maximum Depth of Binary Tree

时间:2015-03-21 06:21:54   收藏:0   阅读:265
 1 /**
 2  * Definition for binary tree
 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 max(maxDepth(root->left), maxDepth(root->right)) + 1;
15     }
16 };

 

原文:http://www.cnblogs.com/shuashuashua/p/4355074.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!