搜索资源列表
jSecureKit
- 用图形用户界面编写的加解密文件系统,还可实现哈希函数算法-graphical user interface with the preparation of the increase declassified document systems, but also achieve hash function algorithm
k-DNA
- k-长DNA子序列在DNA全序列中出现频数的计数问题。该算法通过一个哈希函数把k-长DNA子序列映射为整数关键字从而把k-长DNA子序列出现频数的计数问题转化为整数关键字的重复计数问题,使得能够利用经典B树算法来解决k-长DNA子序列的出现频数计数问题-k-long DNA sequence in the DNA sequence in the frequency of counting problems arise. In the algorithm, a hash function to k
several-hash-functions-in-php
- php中几种哈希函数的对比,包含MD4、MD5、SHA-1、SHA-256、SHA-384以及SHA-512-php several hash functions in contrast, contains of MD4, MD5, SHA-1, SHA-256, SHA-384 and SHA-512
myHash_Final
- 本源码是基于FLASH的哈希查找,在演示中,哈希查找提供了两种哈希函数供选择,冲突解决办法采用线性加1的办法。-The source code is based on FLASH hash find, in the demo, hash search provides two hash function to choose, the conflict solution using linear plus one way.
Picture
- 感知哈希函数的JAVA实现,可直接运行,改变一下文件路径即可。- Aware of the JAVA function implementation, can be directly run, only change the file path can be use the program.
BloomFilter
- 如需要判断一个元素是不是在一个集合中,我们通常做法是把所有元素保存下来,然后通过比较知道它是不是在集合内,链表、树都是基于这种思路,当集合内元素个数的变大,我们需要的空间和时间都线性变大,检索速度也越来越慢。 Bloom filter 采用的是哈希函数的方法,将一个元素映射到一个 m 长度的阵列上的一个点,当这个点是 1 时,那么这个元素在集合内,反之则不在集合内。这个方法的缺点就是当检测的元素很多的时候可能有冲突,解决方法就是使用 k 个哈希 函数对应 k 个点,如果所有点都是 1 的话,那么