CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 哈希表的实现

搜索资源列表

  1. HashTableinDS

    3下载:
  2. 一:问题描述 针对某个集体(比如你所在的班级)中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相对的建表和查表程序。 二:基本要求 假设人名为中国人姓名的汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数法构造,用伪随机探测再散列法处理冲突。 三:实现提示 如果随机函数自行构造,则应首先调整好随机函数,使其分布均匀。人名的长度均不超过19个字符(最长的人名如:庄双双(ZHAGN SHUANG SHUANG)。字符的取码方法可直
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2.41kb
    • 提供者:wjs
  1. hash

    0下载:
  2. 实现哈希表的创建、查找、插入,可以用开放地址法解决冲突问题
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:1.81kb
    • 提供者:周志
  1. jasmine9

    1下载:
  2. 哈希表查找、分块查找 1. 编写一个程序,输出在顺序表{8,14,6,9,10,22,34,18,19,31,40,38,54,66,46,71,78,68,80,85,100,94,88,96,87}中采用分块查找方法(每块的块长为5,共有5块)查找关键字46的过程. 2. 编写一个程序实现哈希表的相关运算, 并在此基础上完成如下功能: (1) 建立{16,74,60,43,54,90,46,31,29,88,77}哈希表A[0…12], 哈希函数为: H(k)=key % 13,
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:4.56kb
    • 提供者:jiangyumin
  1. 哈希表的一个应用

    0下载:
  2. 数据结构——哈希表的一个应用算法实现源程序代码,多多指教。-data structure -- Hash Table 1 algorithm application source code, the exhibitions.
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:6.24kb
    • 提供者:郭菲菲
  1. 哈希表

    0下载:
  2. C++中哈希表的实现
  3. 所属分类:C#编程

  1. 哈希表的应用

    0下载:
  2. 用C++实现哈希表的应用
  3. 所属分类:C#编程

  1. hash-tablet用链地址法构造一个哈希表

    0下载:
  2. 用链地址法构造一个哈希表,并且能实现查找,输出,删除等的操作-Add method with a chain to construct a hash table, and can achieve search, export, or delete operation
  3. 所属分类:Windows编程

    • 发布日期:2017-03-25
    • 文件大小:1.52kb
    • 提供者:古狸
  1. Hash

    1下载:
  2. 哈希表的设计与实现: 针对年级中的“人名”设计一个哈希表,使得平均查找长度不超过指定值;并完成相应的建表和查表程序。-Hash Table Design and Implementation: The Year of the names to design a hash table, making an average to find the length of not more than specified value and completed the appropriate pr
  3. 所属分类:Other windows programs

    • 发布日期:2015-01-10
    • 文件大小:7.54kb
    • 提供者:hello
  1. haxibiao

    0下载:
  2. C语言实现哈希表,方便,原代码,欢迎下载,绝对真的-C language hash table, convenience, the original code, welcome to download, absolutely true
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:1.65kb
    • 提供者:gyf
  1. HashTable

    0下载:
  2. 设计哈希表实现电话号码查询系统(哈希表的创建、查找、通过再哈希表解决冲突)-Hash table to achieve the design of telephone number inquiry system (create a hash table to find, through the settlement of the conflict re-hash table)
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:7.37kb
    • 提供者:luyanjiang
  1. haxi

    0下载:
  2. 设计哈希表实现电话号码查询系统。基本要求: 1、设每个记录有下列数据项:电话号码、用户名、地址; 2、从键盘输入各记录,分别以电话号码和用户名为关键字建立哈希表; 3、采用再哈希法解决冲突; 4、查找并显示给定电话号码的记录; 5、查找并显示给定用户名的记录。 -Hash table to achieve the design of telephone number inquiry system. Basic requirements: 1, for each
  3. 所属分类:ADO-ODBC

    • 发布日期:2017-03-29
    • 文件大小:932.83kb
    • 提供者:烽火
  1. hash

    0下载:
  2. 哈希表的设计,可以设计通过建立哈希表实现快速查找-it s a hash design program,and it can check quickly through hash
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-03
    • 文件大小:1.72kb
    • 提供者:江小莲
  1. hashmap

    0下载:
  2. 哈希表的实现 hashmap.h - declaration of class HashMap hashmap.cpp - definition of class HashMap hash-driver.cpp demonstrates use of class HashMap and its member functions.-A Hash Table Implementation The following header file and implementation fil
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:652.29kb
    • 提供者:刘亚
  1. liuxuqi

    0下载:
  2. 实现哈希表的插入 删除 搜索等功能 实现哈希表的插入 删除 搜索等功能实现哈希表的插入 删除 搜索等功能-Hash table to achieve the insertion deletion search functions to achieve the hash table insert delete search functions to achieve the hash table insert delete search functions
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-09
    • 文件大小:1.85kb
    • 提供者:liuxuqi
  1. HashTable

    0下载:
  2. 哈希表的实现,课程设计的项目,有线性哈希表以及两种计算方法的混合哈希表,并计算运行时间。-The realization of the hash table, course design project, linear hash table as well as a mixture of the two calculation methods hash table, and calculate the running time.
  3. 所属分类:Windows Develop

    • 发布日期:2017-12-07
    • 文件大小:869.82kb
    • 提供者:lee
  1. HashOper

    0下载:
  2. mfc编程 哈希表的实现,包括创建插入删除清空等,采用了线性探测和哈希函数解决冲突-mfc programming hash table implementation, including the creation of insertion and deletion emptied, etc., using a linear hash function to detect and resolve conflicts
  3. 所属分类:GUI Develop

    • 发布日期:2017-04-07
    • 文件大小:30.23kb
    • 提供者:朱倩怡
  1. hash

    0下载:
  2. 哈希表的实现,C++源代码,codeblocks调试成功-Achieve the hash table, C++ source code, codeblocks successful commissioning
  3. 所属分类:Other systems

    • 发布日期:2017-04-25
    • 文件大小:204.31kb
    • 提供者:Yang
  1. hash

    0下载:
  2. 数据结构实验代码,交互化实现哈希表的动态存储结构(Data structure experiment code, interactive realization of hash table dynamic storage structure)
  3. 所属分类:其他

    • 发布日期:2017-12-18
    • 文件大小:612kb
    • 提供者:twat
  1. ha

    0下载:
  2. 实现的功能是哈希表的相关操作程序,及对哈希表的处理(The implemented function is the related operating program of the hash table, and the processing of the hash table)
  3. 所属分类:Windows编程

    • 发布日期:2018-05-02
    • 文件大小:1kb
    • 提供者:***完美
  1. 哈希表查找的设计

    0下载:
  2. 设哈希表表长为20,用除留余数法构造一个哈希函数,以开放地址法中的线性探测再散列法作为解决冲突的方法,编程实现哈希表查找、插入和建立算法。(The set hash table length is 20. The algorithm of hash lookup, insert and build the hash table is programmed by using the exclusion residue method to construct a hash function and
  3. 所属分类:其他

    • 发布日期:2018-05-06
    • 文件大小:60kb
    • 提供者:kukuao
« 12 3 »
搜珍网 www.dssz.com