深度优先搜索系列九 LeetCode 104 二叉树最大深度

2020-02-12  本文已影响0人  徐慵仙

题目

https://leetcode-cn.com/problems/maximum-depth-of-binary-tree/

二叉树最大深度

代码

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

简析

上一篇下一篇

猜你喜欢

热点阅读