随笔- 509  文章- 0  评论- 151  阅读- 22万 

Minimum Depth of Binary Tree

2014/1/8 04:29

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.

Solution:

  The height of a tree is defined as the longest path from the root node down to the farthest leaf node. Here in this problem it's the opposite.

  The code below is simple enough to act as explanation for itself. An extra global variable is used to record the minimum depth during the recursive calls.

  Time complexity is O(n), where n is the number of nodes in the tree. Space complexity is O(1).

Accepted code:

复制代码
 1 // 1WA, 1AC, good~
 2 /**
 3  * Definition for binary tree
 4  * struct TreeNode {
 5  *     int val;
 6  *     TreeNode *left;
 7  *     TreeNode *right;
 8  *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 9  * };
10  */
11 class Solution {
12 public:
13     // 1WA, only depths of leaf nodes count
14     int minDepth(TreeNode *root) {
15         // IMPORTANT: Please reset any member data you declared, as
16         // the same Solution instance will be reused for each test case.
17         if(root == nullptr){
18             return 0;
19         }
20         
21         result = INT_MAX;
22         _minDepth(root, 1);
23         return result;
24     }
25 private:
26     int result;
27     
28     const int &mymin(const int &x, const int &y) {
29         return (x < y ? x : y);
30     }
31     
32     int _minDepth(TreeNode *root, int depth) {
33         if(root->left == nullptr && root->right == nullptr){
34             if(depth < result){
35                 result = depth;
36             }
37         }
38         
39         if(root->left != nullptr){
40             _minDepth(root->left, depth + 1);
41         }
42         if(root->right != nullptr){
43             _minDepth(root->right, depth + 1);
44         }
45     }
46 };
复制代码

 

 posted on   zhuli19901106  阅读(160)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· DeepSeek 开源周回顾「GitHub 热点速览」
· 记一次.NET内存居高不下排查解决与启示
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· .NET10 - 预览版1新功能体验(一)
点击右上角即可分享
微信分享提示