首页 > 代码库 > leetcode dfs Minimum Depth of Binary Tree
leetcode dfs Minimum Depth of Binary Tree
Minimum Depth of Binary Tree
Total Accepted: 25609 Total Submissions: 86491My SubmissionsGiven a binary tree, find its minimum depth.
The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
题意:求出二叉树的最小深度
思路:
minDepth(root) = 1 + min(minDepth(root->left), minDepth(root->right));
但如果 root -> left 或 root->right为空时,minDepth对他们的计算结果为返回 0 ,所以这两个要分别处理一下。
复杂度: 时间O(n) ,空间O(log n)
int minDepth(const TreeNode *root){ if(!root) return 0; if(!root->left) return 1 + minDepth(root->right); if(!root->right) return 1 + minDepth(root->left); return 1 + min(minDepth(root->left), minDepth(root->right)); }
leetcode dfs Minimum Depth of Binary Tree
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。