leetcode || 104、Maximum Depth of Binary Tree

来源:互联网 发布:速卖通seo 编辑:程序博客网 时间:2024/05/21 17:44

problem:

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.

Hide Tags
 Tree Depth-first Search
题意:输出二叉树的深度

thinking:

深度优先搜索,记录最大深度

code:

/** * 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) {        if(root==NULL)            return 0;        int max_dep=0;        dfs(0,max_dep,root);        return max_dep;    }protected:    void dfs(int dep,int &max_dep,TreeNode *node)    {        if(node==NULL)            return;        dep++;        max_dep = max(max_dep,dep);        if(node->left!=NULL)            dfs(dep,max_dep,node->left);        if(node->right!=NULL)            dfs(dep,max_dep,node->right);    }};


0 0
原创粉丝点击