Maximum Depth of Binary Tree

来源:互联网 发布:店铺形象设计淘宝 编辑:程序博客网 时间:2024/05/01 02:21

/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* TreeNode *left;
* TreeNode *right;
* TreeNode(int x) : val(x), left(NULL), right(NULL) {}
* };
*/
class Solution {
public:
int maxDepth(TreeNode* root) {
if (root==NULL)
return 0;
else
{
int ml=maxDepth(root->left);
int mr=maxDepth(root->right);
if (ml>mr)
return ++ml;
else
return ++mr;
}
}
};

0 0
原创粉丝点击