码迷,mamicode.com
首页 >  
搜索关键字:breadth-first search    ( 12382个结果
leetcode - Recover Binary Search Tree
题目:Recover Binary Search TreeTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without changing its structure.Note:A ...
分类:其他好文   时间:2014-06-28 10:26:38    阅读次数:253
国内外优秀的源码网站
不管你是初学一门计算机语言或技术,还是想学习别人的经验和创意。做为一个开发人员,都会经常需要到搜索一些代码,下面是7个地方可以帮助你快速寻找到你需要的代码。 GitHub Code Search http://github.com/search 热门的开源代码库和和版本控制服务。 GitHub 在最近启动了Code Search .即使它才启动不久,但凭借GitHub 的受欢迎度...
分类:Web程序   时间:2014-06-22 22:08:23    阅读次数:630
leetcode——Search for a Range 排序数组中寻找目标下标范围(AC)
Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the target is not found ...
分类:其他好文   时间:2014-06-22 21:47:15    阅读次数:269
CorePlot学习零---安装
刚开始接触CorePlot时,网上搜到很多相关文章,讲解如何安装这个第三方库,到目前阶段该库的版本已经到了1.5了,但是在github上你可以看到他的安装方法,不过为啥就没有codpod来安装呢?于是我就先搜索:pod search coreplot 结果如下:令人惊喜啊 说明我们是可以用pod来安装的,省去了很多麻烦的设置,直接拿来就能用 多好啊 所以我们在Podfile文件中:这样写...
分类:其他好文   时间:2014-06-22 18:49:32    阅读次数:212
【微信公众平台开发】百度周边搜索接口php封装
现在微信公众平台很多娱乐的,都有用到周边搜索功能,研究下比较简单,通过百度周边搜索接口封装如下: 调用格式: $wechatBaiduAPI = new WechatBaiduAPI(); $ret = $wechatBaiduAPI->Place_search($str_key,$location['x'].",".$location['y'] );     参数说明:...
分类:微信   时间:2014-06-22 14:43:44    阅读次数:481
leetcode - Unique Binary Search Trees II
题目:Unique Binary Search Trees IIGivenn, generate all structurally uniqueBST's(binary search trees) that store values 1...n.For example,Givenn= 3, your...
分类:其他好文   时间:2014-06-22 13:49:21    阅读次数:243
Python数据结构——散列表
散列表的实现常常叫做散列(hashing)。散列仅支持INSERT,SEARCH和DELETE操作,都是在常数平均时间执行的。需要元素间任何排序信息的操作将不会得到有效的支持。散列表是普通数组概念的推广。如果空间允许,可以提供一个数组,为每个可能的关键字保留一个位置,就可以运用直接寻址技术。当实际存...
分类:编程语言   时间:2014-06-22 10:55:33    阅读次数:302
elasticsearch中的几个概念总结
elasticsearch Faceted search Multi tenancy Geo spatial search...
分类:其他好文   时间:2014-06-22 06:37:41    阅读次数:245
leetcode__Convert Sorted List to Binary Search Tree
Convert Sorted List to Binary Search Tree  Total Accepted: 12283 Total Submissions: 45910My Submissions Given a singly linked list where elements are sorted in ascending order, convert it...
分类:其他好文   时间:2014-06-21 23:57:00    阅读次数:351
POJ 1785 Binary Search Heap Construction (线段树)
题目大意: 给出的东西要求建立一个堆,使得后面的数字满足堆的性质,而且字符串满足搜索序 思路分析: 用线段树的最大询问建树。在建树之前先排序,然后用中序遍历递归输出。 注意输入的时候的技巧。。。 #include #include #include #include #define lson num<<1,s,mid #define rson num<<1|1,m...
分类:其他好文   时间:2014-06-21 21:38:34    阅读次数:205
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!