搜索资源列表
hash.tar
- 一個C語言hash表的實現 hash.c hash.h Makefile test2.c test.c
hash
- 一个hash表的实现以及测试代码,比顺序查找快100多倍
hash
- 扫描一个C源程序,用hash表存储该程序中出现的关键字,并统计该程序中的关键字出现频度。用线性探测法解决hash冲突。设hash函数为: hash(key)=[(key的第一个字母序号)*100+(key的最后一个字母序号)] MOD 41
hash.rar
- MFC 哈希表的实现 适合初学者的学习和借鉴,MFC
hash
- 为班级30个人的姓名设计一个哈希表,假设姓名用汉语拼音表示。要求用除留余数法构造哈希函数,用线性探测再散列法处理冲突,平均查找长度上限为2.-The names of 30 people for the class to design a hash table, assuming that the name in pinyin. Required to remain with the addition of more than a few method to construct hash fun
hash
- 哈希表实现- The Hasche table realizes
hash
- hash表算法,散列的应用,高效率的存储查找算法-hash table algorithm, the hash of the application, the good
hash
- 用hash表统计关键字频度,以及对于hash表的一系列操作,解决冲突的方法-Keyword hash table statistics with frequency, as well as a series of operations for the hash table to resolve the conflict
hash
- hash表 对于快速数据查找,能大大提高效率-hash table lookup for fast data, can greatly improve efficiency
hash
- 数据结构课程设计,哈希表,喜欢的可以下载回去,修改下数据即可-Curriculum design data structure, hash table, like you can download the back, you can modify the data under
hash.tar
- 数据结构之 hash表编程源代码 培训课程源代码-The hash table data structure training program source code source code
hash
- C语言实现,利用hash表实现插入查找数据,并针对各种负载因子求平均查找次数-C language, the use of search data into the hash table implementation, and the load factor for a variety of averaging to find the number of
hash
- 利用hash函数将关键字的key值算出,先检验hash表中key位置是否有关键字。如果没有,则将关键字赋给其关键字域。如果有,则先检验其关键字域的关键字是否与捕捉到的关键字相同。如果相同,只需将关键字的出现次数加1就行了。如果不相同,就依次往后面检验,直到出现相同的关键字,只需将hash表中的冲突域加上循环的次数,出现域加1即可。如果遍寻hash表后都没有找到与之相同的,则要插入一个新的节点-The use of hash function the key key value calculate
hash
- 数据结构 hash表,带菜单,注释 源代码-data structure hash with menu source code
hash
- 一个比较基础的hash表建立程序,有助于大家对hash表的原理掌握。对不熟悉hash的朋友相当有用。-A basis for comparison of the hash table to establish a program to help people grasp the principle of the hash table. Friends are not familiar with the hash quite useful.
hash
- 用于hash表的处理,对hash表的各种应用以及对hash表的各种处理-hash table for the processing of various applications on the hash table and hash tables for various processing
hash
- 数据结构,hash表应用,采用的是查找算法-Data structure, hash table application, using the search algorithm
9、hash表应用
- 散列表(hash table,也叫哈希表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。(A hash table (hash table, also called hash table) is a data structure that accesses directly according to the key code value (Key val
hash
- hash-33算法实现,可嵌入到C工程或C++工程中(hash-33 algorithm implementation can be embedded in C engineering or C++ project)
project6
- 利用线性探查法建立hash表并进行查找操作(Establishment of hash Table by Linear Exploration and Search Operation)