搜索资源列表
mztreeview2
- 树形菜单,高级树形菜单mztreeview2.0。可以实现对组,对个体,实行选项。速度飞快!是现在最流行的树形菜单-Shape of tree menu, high-level shape of tree menu mztreeview2.0. May realize to the group, to the individual, implements the option. Speed very fast! Is the present most popular shape of tree
trumphurst
- Patricia_trie 是一部纯Java的搜索树,速度相当的快,可以处理百万级的检索。-Patricia_trie is pure Java search tree, high speed and capable of handling million records.
jqmcsnow
- jquery圣诞节雪花飘落网页特效,配上了圣诞树和雪景,在加上本效果实现的雪花飘飞效果,一个圣诞场景浮现眼前,雪花飞舞下落,数量不断增多,速度可调,请看演示截图所示。-jquery Christmas snow falling netnew, coupled with the Christmas tree and snow, plus snowy effect to achieve this effect, a Christmas scene surfacing, dancing snowfla
Rtree
- R树索引,可以为高维数据建立类似Btree的索引,大大加快查找速度-R-tree indexes, you can create similar Btree indexes for high-dimensional data, greatly accelerate the search speed
BloomFilter
- 如需要判断一个元素是不是在一个集合中,我们通常做法是把所有元素保存下来,然后通过比较知道它是不是在集合内,链表、树都是基于这种思路,当集合内元素个数的变大,我们需要的空间和时间都线性变大,检索速度也越来越慢。 Bloom filter 采用的是哈希函数的方法,将一个元素映射到一个 m 长度的阵列上的一个点,当这个点是 1 时,那么这个元素在集合内,反之则不在集合内。这个方法的缺点就是当检测的元素很多的时候可能有冲突,解决方法就是使用 k 个哈希 函数对应 k 个点,如果所有点都是 1 的话,那么