[Leetcode] Maximum Depth of Binary Tree

来源:互联网 发布:阿里云怎么解析域名 编辑:程序博客网 时间:2024/04/30 04:30
/** * Definition for binary tree * struct TreeNode { *     int val; *     TreeNode *left; *     TreeNode *right; *     TreeNode(int x) : val(x), left(NULL), right(NULL) {} * }; */class Solution {public:    int maxDepth(TreeNode *root) {        // Start typing your C/C++ solution below        // DO NOT write int main() function        if (!root) return NULL;                if (!root->left && !root->right) return 1;                int left = INT_MIN;        int right = INT_MIN;                if (root->left)            left = maxDepth(root->left) + 1;                    if (root->right)            right = maxDepth(root->right) + 1;                    return max(left, right);    }};

原创粉丝点击