码迷,mamicode.com
首页 >  
搜索关键字:binary index tree    ( 56466个结果
LeetCode OJ - Minimum && Maximum Depth of Binary Tree
这两道题用递归的解法都很简单,只是稍有不同。下面是AC代码: 1 /** 2 * Given a binary tree, find its minimum depth. 3 * the minimum depth is the number of nodes along th...
分类:其他好文   时间:2014-05-10 08:47:32    阅读次数:271
LeetCode OJ - construct Binary Tree from Inorder and Postorder/Preorder Traversal
不断递归的实现!!!!下面是AC代码: 1 /** 2 * Given inorder and postorder traversal of a tree, construct the binary tree. 3 * @param inorder 4 * @param...
分类:其他好文   时间:2014-05-10 08:40:40    阅读次数:297
jQuery
http://www.w3school.com.cn/jquery/index.aspjQuery 是一个 JavaScript 函数库。极大地简化了 JavaScript 编程。很容易学习。jQuery 是一个“写的更少,但做的更多”的轻量级 JavaScript 库。jQuery 库包含以下特性...
分类:Web程序   时间:2014-05-10 02:01:34    阅读次数:403
Leetcode: Minimum Depth of Binary Tree
这道题因为不仔细的缘故两次过,与Maximum Depth of Binary Tree问题类似,区别在于这个问题中,如果一个节点左子树为空、右子树有值,则该节点的深度应取决于右子树,而不能直接取min{左,右} 1 /** 2 * Definition for binary tree 3 * .....
分类:其他好文   时间:2014-05-10 01:40:13    阅读次数:293
What is a heap?--reference
A heap is a partially sorted binary tree. Although a heap is not completely in order, it conforms to a sorting principle: every node has a value less ...
分类:其他好文   时间:2014-05-09 17:34:18    阅读次数:339
note:开源许可证之间的区别
最近接触开源项目比较多,关注一下许可证的问题。 饱受诟病的病毒式copyleft就是GPL了。。ref:http://code.csdn.net/news/2819582ref:http://www.openfoundry.org/LicenseWizard/index.htm,真实的使用效果需要....
分类:其他好文   时间:2014-05-09 17:28:00    阅读次数:261
CentOS系统环境下安装MongoDB
原因:因为工作需要,集中管理log4j日志到MongoDB!进入MongoDB下载中心:http://www.mongodb.org/downloadsWe recommend using these binary distributions (官方推荐使用二进制版本!)根据自己的实际系统环境,下载...
分类:数据库   时间:2014-05-09 16:35:35    阅读次数:393
对oracle数字类型的研究
Oracle的数字类型主要有number,binary_float,binary_double三类,其他的像int,number(p,s)等等大多数都是由这些引申出来的。这部分的理解主要来自oracle11g编程艺术。 其中提到的一个很有意思的东西就是number是软件模拟运算,而binary...
分类:数据库   时间:2014-05-09 16:32:13    阅读次数:350
URL访问限制的 配置
关闭[访问目录]web服务器默认是打开该访问目录的权限的。要关闭显示目录文件权限 只需把配置项Directory中的Options后的Indexes去掉即可,或者在Indexes前加一个减号。Indexes选项表示访问该目录时,如果该目录下有index.html,则定向访问该文件,否则展示目录下的文...
分类:其他好文   时间:2014-05-09 12:33:48    阅读次数:962
Leetcode: Path Sum
1 /** 2 * Definition for binary tree 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNo...
分类:其他好文   时间:2014-05-09 12:16:45    阅读次数:232
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!