leetcode 104. 二叉树的最大深度

天涯浪子 提交于 2020-02-03 01:12:30

深度优先搜索代码:

/**
 * 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) {
        int depth=0,high=0;
        dfs(root,depth,high);
        return depth;
    }
    void dfs(TreeNode* root,int &depth,int high){
        if(root==NULL) return;
        high++;
        if(high>depth) depth=high;
        dfs(root->left,depth,high);
        dfs(root->right,depth,high);
        high--;
    }
};

精简版:

/**
 * 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) {
        return root==NULL? 0: 1+max(maxDepth(root->left),maxDepth(root->right));
    }
};

 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!