码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode dfs Minimum Depth of Binary Tree

时间:2014-10-11 17:41:25      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   os   ar   sp   

Minimum Depth of Binary Tree

 Total Accepted: 25609 Total Submissions: 86491My Submissions

Given 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

标签:des   style   blog   http   color   io   os   ar   sp   

原文地址:http://blog.csdn.net/zhengsenlie/article/details/39995615

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!