码迷,mamicode.com
首页 >  
搜索关键字:ternary search tree    ( 28833个结果
解决libc.so.6(GLIBC_2.14)(64bit)等之类的没有问题
http://rpm.pbone.net/index.php3/stat/3/limit/2/srodzaj/1/dl/40/search/libc.so.6%28GLIBC_2.14%29%2864bit%29/field[]/1/field[]/2...
分类:其他好文   时间:2014-06-11 06:55:40    阅读次数:554
OpenJDK 源代码阅读之 Collections
通过阅读 java.util.Collections 学习与操作 Collections 相关算法的实现,例如 sort, search, shuffle. 以及如何实现不可变 collection,如何将普通 collection 包装成线程安全的 collection。...
分类:其他好文   时间:2014-06-11 06:18:18    阅读次数:362
[LeetCode] Search Insert Position [21]
解题思路 给一个排序数组和一个数,寻找该数在数组的位置或者插入位置。本题考查的还是二分查找。二分查找返回的结果就是该数在数组中该插入的位置。 代码实现...
分类:其他好文   时间:2014-06-11 00:55:14    阅读次数:205
【点击模型学习笔记】A survey on click modeling in web search_Lianghao Li_ppt
是一篇综述性质的ppt。 主要内容: 对搜索中的广告点击预测,总结学术界的研究成果。 搜索广告主要展示位为:1. 搜索结果页面最上侧;2. 搜索结果右侧。 研究意义:广告点击次数直接影响收入 问题抽象:对于某个query q,和某个广告ad,预测用户对它们的点击率。 主要内容: 对搜索中的广告点击预测,总结学术界的研究成果。 搜索广告主要展示位为:1. 搜索结果页面...
分类:Web程序   时间:2014-06-11 00:22:14    阅读次数:418
[LeetCode] Search a 2D Matrix [25]
题目... 二维数组中的查找,这是个简单的题,根据题意可以推出,这个二维数组其实是一个有序的一维数组。解决思路也很容易想到,每次比较每一维最后一个元素,如果该元素比要找的元素小,说明这个行不可能含该元素;如果相等,那就找到了,如果最后一个元素比要找元素大,说明该元素如果出现比在这一行。然后再在这一行中就行查找(可以用顺序,也可二分)。 代码如下:...
分类:其他好文   时间:2014-06-10 14:49:37    阅读次数:233
leetcode - Maximum Depth of Binary Tree
题目:Maximum Depth of Binary TreeGiven a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the ro...
分类:其他好文   时间:2014-06-10 10:09:13    阅读次数:237
json tree
下载源码:http://files.cnblogs.com/Mr-Joe/tree.zip
分类:Web程序   时间:2014-06-10 09:58:11    阅读次数:187
【leetcode】Flatten Binary Tree to Linked List
分析: 问题是将给定的二叉树变换成令一种形式,这种类型的问题,其模式是,将左子树变换成某种形式,右子树也变换成这种形式,然后再与根结点按规定的方式连接起来,那么整体就变换完成了。这个题我们就可以采用这种形式,麻烦的地方就是在进行连接的时候,我们假设根为root,左子树变换后的根为root_left,右子树变换后的根为 root_right,那么连接的时候应该是root->right = root...
分类:其他好文   时间:2014-06-10 07:27:10    阅读次数:201
【leetcode】Balanced Binary Tree
Given a binary tree, determine if it is height-balanced.For this problem, a height-balanced binary tree is defined as a binary tree in which the depth...
分类:其他好文   时间:2014-06-10 00:54:41    阅读次数:313
Sentiment Analysis(1)-Dependency Tree-based Sentiment Classification using CRFs with Hidden Variables
The content is from this paper:Dependency Tree-based Sentiment Classification using CRFs with Hidden Variables, byTetsuji Nakagawa.A typical approach ...
分类:其他好文   时间:2014-06-09 16:39:56    阅读次数:421
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!