[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.分析:  
要得出二叉树中全部从根到叶子节点路径中,经过结点最少路径上的节点数。
採用二叉树的层序遍历思想。每遍历一层。高度加一,仅仅要遇到叶子节点,就终止,并返回当前层数。  
代码:
class Solution {
public:
    int minDepth(TreeNode* root) {
        deque<TreeNode*> store;
        int left_num;
        int res = 0;
        if(!root)
            return res;
        store.push_back(root);
        while(!store.empty()) {
            res++;
            vector<int> res_t;
            left_num = store.size();
            while(left_num-- > 0) {
                const TreeNode* tmp = store.front();
                if(!tmp->left&&!tmp->right)
                    return res;
                store.pop_front();
                res_t.push_back(tmp->val);
                if(tmp->left)
                    store.push_back(tmp->left);
                if(tmp->right)
                    store.push_back(tmp->right);
            }
        }
    }
};[leetcode]Minimum 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 shor ... 
- [LeetCode] Minimum Depth of Binary Tree 二叉树最小深度
		Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shor ... 
- [LeetCode] 111. Minimum Depth of Binary Tree ☆(二叉树的最小深度)
		[Leetcode] Maximum and Minimum Depth of Binary Tree 二叉树的最小最大深度 (最小有3种解法) 描述 解析 递归深度优先搜索 当求最大深度时,我们只要 ... 
- 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 ... 
- 【LeetCode】Minimum Depth of Binary Tree   二叉树的最小深度 java
		[LeetCode]Minimum Depth of Binary Tree Given a binary tree, find its minimum depth. The minimum dept ... 
- [LeetCode] 111. Minimum Depth of Binary Tree 二叉树的最小深度
		Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shor ... 
- [LeetCode] Maximum Depth of Binary Tree 二叉树的最大深度
		Given a binary tree, find its maximum depth. The maximum depth is the number of nodes along the long ... 
- LeetCode: Minimum Depth of Binary Tree 解题报告
		Minimum Depth of Binary Tree Given a binary tree, find its minimum depth. The minimum depth is the n ... 
- Leetcode 111 Minimum Depth of Binary Tree 二叉树
		找出最短的从叶子到根的路径长 可以回忆Maximum Depth of Binary Tree的写法,只不过在!root,我把它改成了10000000,还有max函数改成了min函数,最后的值如果是1 ... 
随机推荐
- Appium 设置手机连接方式
			使用appium的 Connection 和driver 的setConnection方法,可以切换手机的上网方式 // 切换到wifi Connection cnn = Connection.WIF ... 
- Package CJK Error: Invalid character code. 问题解决方法--xelatex和pdflatex编译的转换
			Package CJK Error: Invalid character code. 问题解决方法--xelatex和pdflatex编译的转换 解决方法:添加格式说明信息 将下面语句: \docum ... 
- iframe父页面获取iframe子页面的元素 与 iframe子页面获取父页面元素
			一.在iframe子页面获取父页面元素代码如下:$('#objld', parent.document); 二.在父页面获取iframe子页面的元素代码如下:$("#objid", ... 
- PHP文件锁定写入实例分享
			PHP文件锁定写入实例解析. 原文地址:http://www.jbxue.com/article/23118.html PHP文件写入方法,以应对多线程写入,具体代码: function file_w ... 
- 关于iPhone音频的那些事
			音频文件(Audio File) 1.有两个概念(1).文件格式(File Format or Audio Containers)——描述文件本身的格式,里面的音频数据可以用不同的编码格式.例如:ca ... 
- 通过纯代码方式发布WCF服务
			网络上搜索WCF服务,一般是寄宿在IIS,通过WebConfig方式配服务地址,接口类型等信息,但是对于我这样的懒人,目前项目在开发阶段,实在不愿意每次添加新服务就更新配置文件,于是使用了反射来加载服 ... 
- 行为类模式(十):模板方法(Template Method)
			定义 定义一个操作中的算法的骨架,而将步骤延迟到子类中.模板方法使得子类可以不改变一个算法的结构即可重定义算法的某些特定步骤. UML 优点 模板方法模式通过把不变的行为搬移到超类,去除了子类中的重复 ... 
- Apache Flink Training and sample code
			http://training.data-artisans.com/ https://github.com/dataArtisans/blog-post-code-samples https://gi ... 
- 【硅谷问道】Chris Lattner 访谈录(上)
			[硅谷问道]Chris Lattner 访谈录(上) 话题 Chris Lattner 是谁? Xcode 的编译器 LLVM 背后有怎样的故事? Swift 诞生的前世今生,封闭的苹果为何要拥抱开源 ... 
- docker容器资源配额控制
			转自:http://blog.csdn.net/horsefoot/article/details/51731543 文/ 天云软件 容器技术团队 Docker通过cgroup来控制容器使用的资源配额 ... 
