CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - hash table

搜索资源列表

  1. Hash

    0下载:
  2. 用于Hash表的处理,对hash表的各种应用以及对hash表的各种处理-Hash table for the processing of various applications on the hash table and hash tables for various processing
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1607
    • 提供者:张贇
  1. hash

    1下载:
  2. 上海交大数据结构作业,Hash表的类实现,包含测试文件.-Shanghai Jiaotong data structure operations, class Hash table implementations, including the test file.
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-08
    • 文件大小:1809723
    • 提供者:高奥
  1. Hash

    0下载:
  2. 哈希表的一些功能,如制作出一个哈希表,并对相应的信息进行查找等。-This is Hash Table, you can search messages by using this table
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2055
    • 提供者:刘震
  1. hash

    0下载:
  2. 哈希表实现字母表的索引,使用拉链法来处理哈希表中的冲突。-Hash table to achieve index alphabet, using the zipper method to deal with conflicts in the hash table.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-13
    • 文件大小:2028
    • 提供者:尚绝枫
  1. hash

    0下载:
  2. 这是用哈希表实现的学生信息管理系统的程序。提供添加、删除、查找和显示学生信息以及清屏的功能。-This is achieved using a hash table of student information management system procedures. Provide add, delete, search and display student information and clear screen function.
  3. 所属分类:Data structs

    • 发布日期:2017-04-24
    • 文件大小:290738
    • 提供者:林雨
  1. Hash

    2下载:
  2. 哈希表的操作基本功能如下: (1)生成n个随机数并输出。 (2)确定适当的哈希地址空间大小m,使控制装填因子α在0.75左右。 (3)采用除留余数法作为哈希函数 H(key)=key p,选择适当的p。 (4)用开放定址法中线性探查法处理冲突建立哈希表,并计算平均查找长度。 (5)功能:检索、插入、删除。-The basic function of the operation of the hash table as follows: (a) generating a ra
  3. 所属分类:Other systems

    • 发布日期:2017-06-25
    • 文件大小:2048
    • 提供者:
  1. hash

    0下载:
  2. hash table 数据结构 课程作业实习 -hash table data structure course work
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:3442
    • 提供者:jinliang
  1. hash

    0下载:
  2. hash表的实现(散列),已经编译通过。-achieve hash table (hash)
  3. 所属分类:Other systems

    • 发布日期:2017-04-28
    • 文件大小:282233
    • 提供者:dobby
  1. VB-Hash-ok

    0下载:
  2. VB的哈希杂凑表高级算法示例,很好的例子-VB hash hash table advanced algorithms example, a good example
  3. 所属分类:Dialog_Window

    • 发布日期:2017-04-24
    • 文件大小:56326
    • 提供者:cjy
  1. HASH-cpp

    0下载:
  2. hash表测试实例,实现一个简单的哈希表的应用实例-hash table test cases to achieve a simple hash table application examples
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-29
    • 文件大小:61396
    • 提供者:yaunger
  1. hash

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

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

    0下载:
  2. 设计散列表实现身份证查找系统,对身份证号进行 Hash。 [基本要求] (1) 设每个记录有下列数据项:身份证号码(虚构,位数和编码规则与真实一致即 可)、姓名、地址。 (2) 从键盘或文件输入各记录,以身份证号码为关键字建立散列表。 (3) 采用开放定址的方法解决冲突。 (4) 查找并显示给定身份信息的记录。-Designed to achieve identity hash table lookup system, ID number for Hash. [
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-03
    • 文件大小:548738
    • 提供者:真真
  1. hash

    0下载:
  2. 散列表。它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。在理想情况下,查找、插入、删除操作的时间均为O(1),是一种高效的动态集合结构。-Hash table. It to access records by key value mapped to a table in a position to accelerate the lookup speed. This mapping function called a hash f
  3. 所属分类:assembly language

    • 发布日期:2017-04-12
    • 文件大小:776
    • 提供者:juwairen
  1. hash

    0下载:
  2. Turn bulk memory into a hash table object by initializing the fields of the Hash structure.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:6969
    • 提供者:vhbunqui
  1. HASH

    0下载:
  2. 散列表(Hash table,也叫哈希表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。给定表M,存在函数f(key),对任意给定的关键字值key,代入函数后若能得到包含该关键字的记录在表中的地址,则称表M为哈希(Hash)表,函数f(key)为哈希(Hash) 函数。-Hash table
  3. 所属分类:source in ebook

    • 发布日期:2017-04-28
    • 文件大小:323918
    • 提供者:KID
  1. hash

    0下载:
  2. 数据结构,Hash表应用,采用的是查找算法-Data structure, Hash table application, using the search algorithm
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:239752
    • 提供者:靳以2002
  1. hash

    0下载:
  2. hash tablesread program in simple pascal and check the variable by hash table
  3. 所属分类:Graph program

    • 发布日期:2017-04-13
    • 文件大小:2200
    • 提供者:yan83791
  1. hash

    0下载:
  2. 用哈希表显示姓名及信息,实现姓名的查找,显示及哈希表的显示-A hash table shows the name and information to achieve the name search, display and display hash table
  3. 所属分类:Other systems

    • 发布日期:2017-05-01
    • 文件大小:285510
    • 提供者:gtt
  1. The-design-of-Hash

    0下载:
  2. 1、设每个记录有下列数据项:电话号码、用户名、地址 2、从键盘输入各记录,分别以电话号码和用户名为关键字建立哈希表; 3、采用再哈希法解决冲突; 4、查找并显示给定电话号码的记录; 5、查找并显示给定用户名的记录。 6、在哈希函数确定的前提下,尝试各种不同类型处理冲突的方法(至少两种),考察平均查找长度的变化。 -1, each record has the following data items: telephone number, user name, addres
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-04
    • 文件大小:140920
    • 提供者:张校臣
  1. hash

    0下载:
  2. 易语言QEHash V3.0源码例程程序结合易语言特殊功能支持库,实现哈希Hash表操作。 -Easy language QEHash V3.0 source routine procedures combined with easy language special features to support the library, the realization of the hash table Hash operation.
  3. 所属分类:ELanguage

    • 发布日期:2017-05-05
    • 文件大小:4557
    • 提供者:zcwlo
« 1 2 3 4 5 6 78 9 10 11 12 ... 30 »
搜珍网 www.dssz.com