搜索资源列表
datastr
- 数据结构 array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和 < 运算符) avltree.h: AVL 树(
hashmapcontainer
- C语言实现的hash map容器,可以方便的在其他算法中调用 -C language of the hash map containers, in other convenient algorithm called
Hash
- 1. 本程序是针对我们班级中“人名”设计的哈希表,平均查找长度不超过R。 2. 程序中人名为汉语拼音形式,共30个我周围较熟悉的同学,取平均查找长度的上限为2.哈希函数用除留余数法构造,用伪随机探测再散列法处理冲突。 3. 人名的长度均不超过19个字符,测试数据为查找“hanbiao”。 本程序以用户和计算机的对话方式执行,即在计算机终端上显示“提示信息”之后,由用户在键盘上输入程序中规定的运算命令;相应的输入数据(滤去输入中的非法字符)和运算结果显示在其后。
计算 HASH 值的 C 语言源代码
- 计算 HASH 值的 C 语言源代码 -calculated hash value of the C language source code
电话本管理系统
- 提高输入容错。判断输入的对错。 时间关系,搜索功能为线性搜索,现增强如下:f_search:费氏查找法;btree:二叉树查找法;l_search:线性查找法; r_search:递归折半查找法;zcsear:杂凑碰撞查找法;o_sear:插补查找加强法; 排序是冒泡法,现增强为:heaps:累堆排序;binary:二叉树排序;xieer:谢耳排序;sinsert:插入排序;quicks:快速排序;select:选择排序法;-increase input fault tolerance. Imp
12386
- 哈希表的编程,很好很强大,希望大家能够有所帮助-Hash table programming, very good very strong
hash
- 数据结构习题集上哈希表的算法 上传上来给大家一起分享一下-Data Structure Problem Set up hash table algorithm for upload to share with everyone
sercher
- 帮助大家了解到哈希查找技术的简单应用及功能的实现-To help people learned the simple hash lookup and function
hash-table
- C/C++数据结构中的重要算法哈希表的实现源代码-The source code to realize the Hash table ,an important algorithm based on C/C++ the data structure
Information-security-instruction
- 本实验指导书涵盖了对称密钥密码加密解密实验、公钥密码加密解密实验、Hash函数的应用和软件漏洞攻击实验等内容。并且对每个实验内容中所给出的实验题目均附上了完整的源代码,且经调试运行正确。同时,为了帮助读者理解程序,在每个源代码中都给出了详尽的注释。-The experimental guide book covers the experimental symmetric key cipher encryption and decryption, public key encryption and
stlport
- STLport源码;STLport 是一个多平台的 ANSI C++ 标准类库实现,具备很多高级特征,并且为效率,异常安全性和线程安全性做了优化,还做了许多扩展,如 hash 表和单链。-STLport source STLport is a multiplatform ANSI C++ standard library implementation, with many advanced features, and for the efficiency, safety and abnorma
Data-Structure-Algorithm-Java
- 二项堆,哈希表,排序等数据结构和算法的实现~-Disjoint sets, sorting, two heap, hash tables and other data structures implemented in Java ~
hash
- 用哈希函数写的简易通讯录,都是通过读写文件实现-Hash function used to write simple address book, are achieved through reading and writing files
RadixSort
- This is a chained hash program. it can be related to the student for data structure.
HASH
- 散列表(Hash table,也叫哈希表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。给定表M,存在函数f(key),对任意给定的关键字值key,代入函数后若能得到包含该关键字的记录在表中的地址,则称表M为哈希(Hash)表,函数f(key)为哈希(Hash) 函数。-Hash table
ISHASH
- calc hash in inno setup