Given a binary tree, find its maximum depth.
The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.
/**
* Definition for a binary tree node.
* struct TreeNode {
* int val;
* struct TreeNode *left;
* struct TreeNode *right;
* };
*/
int maxDepth(struct TreeNode* root) {
int i, j;
i=j=1;
if(!root) return 0;
if(root->left) i += maxDepth(root->left);
if(root->right) j += maxDepth(root->right);
if( i > j ) return i;
return j;
}
递归找子树即可。
本文介绍如何使用递归方法计算给定二叉树的最大深度,即从根节点到最远叶子节点的最长路径长度。

被折叠的 条评论
为什么被折叠?



