搜索:hash
找到约 205 项符合「hash」的查询结果
结果 205
按分类筛选
- 全部
- 加密解密 (61)
- 数据结构 (36)
- 技术资料 (29)
- Java编程 (8)
- 压缩解压 (7)
- Linux/Unix编程 (6)
- 其他 (4)
- 数学计算 (4)
- 文章/文档 (4)
- VC书籍 (4)
- 数值算法/人工智能 (3)
- CA认证 (3)
- 其他数据库 (3)
- 人工智能/神经网络 (3)
- 软件设计/软件工程 (3)
- 源码 (2)
- 数据库系统 (2)
- 操作系统开发 (2)
- 书籍源码 (2)
- 其他书籍 (2)
- 教育系统应用 (2)
- 编译器/解释器 (2)
- 网络 (2)
- 学术论文 (1)
- Internet/网络编程 (1)
- Applet (1)
- 文件格式 (1)
- 嵌入式/单片机编程 (1)
- STL (1)
- matlab例程 (1)
- Delphi控件源码 (1)
- 中间件编程 (1)
- 行业发展研究 (1)
- 并行计算 (1)
https://www.eeworm.com/dl/633/328586.html
Java编程
Hash函数实例
Hash函数实例,所用文章为5000单词以内,所以初始为求出所取单词的hash值,然后对1901求余,所得的余数作为一个数组的下标,数组的每一个数又是一个链表,凡余数相同的单词放入同一链表.此为所构造的hash函数.
https://www.eeworm.com/dl/519/466031.html
加密解密
realization of hash function
realization of hash function
https://www.eeworm.com/dl/654/287755.html
数据结构
/* * The internal form of a hash table. * * The table is an array indexed by the hash of the k
/*
* The internal form of a hash table.
*
* The table is an array indexed by the hash of the key collisions
* are resolved by hanging a linked list of hash entries off each
* element of the array. Although this is a really simple design it
* isn t too bad given that pools h ...
https://www.eeworm.com/dl/519/329182.html
加密解密
简单的hash计算的类。实现了hash计算
简单的hash计算的类。实现了hash计算,对处理字符串,进行加密和检索很有帮助。