leetcode104

1、 Maximum Depth of Binary Tree
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.
跟512那个题一个思路,而且只需要求出最大深度就好了,就是把val那一步省去就可以了。

/**
 * 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 max=0;
    int maxDepth(TreeNode* root) {
        function(root,1);
        return max;
    }
    void function(TreeNode* root, int level){
        if(!root) return;
        if(level>max)
            max=level;
        function(root->left,level+1);
        function(root->right,level+1);
    }
};

给另一个还不错的思路,用stl帮了一下忙

class Solution {
public:
    int maxDepth(TreeNode* root) {
        if(!root) 
            return 0;
        return 1+max(maxDepth(root->left),maxDepth(root->right));
    }
};

不过这个不如上面算法快哦~思路就是如果是空返回0,不是空,root就算1层,然后不断问左子树和右子树的深度,取最大,只要不是空都会递增1,空了就返回了嗯。

你可能感兴趣的:(dfs+bfs)