原文:LeetCode:Minimum Depth of Binary Tree,Maximum Depth of Binary Tree

LeetCode:Minimum Depth of Binary Tree 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. 算法 ...

2013-11-24 15:17 2 2658 推薦指數:

查看詳情

[LeetCode] Minimum Depth of Binary Tree

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 ...

Tue Nov 13 00:53:00 CST 2012 0 3355
Minimum Depth of Binary Tree leetcode java

題目: 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 ...

Thu Jul 31 08:47:00 CST 2014 0 2931
[leetcode]Minimum Depth of Binary Tree @ Python

原題地址:http://oj.leetcode.com/problems/minimum-depth-of-binary-tree/ 題意: Given a binary tree, find its minimum depth. The minimum depth ...

Mon May 12 02:23:00 CST 2014 0 3285
[leetcode]Maximum Depth of Binary Tree @ Python

原題地址:https://oj.leetcode.com/problems/maximum-depth-of-binary-tree/ 題意: Given a binary tree, find its maximum depth. The maximum depth ...

Thu Jun 12 00:40:00 CST 2014 0 3260
LeetCode:111_Minimum Depth of Binary Tree | 二叉樹的最小深度 | Easy

要求:此題正好和Maximum Depth of Binary Tree一題是相反的,即尋找二叉樹的最小的深度值:從根節點到最近的葉子節點的距離。 結題思路:和找最大距離不同之處在於:找最小距離要注意(l<r)? l+1:r+1的區別應用,因為可能存在左右子樹為空的情況,此時值就為 ...

Sun Nov 30 01:20:00 CST 2014 0 2381
 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM