CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - 哈希表设计

搜索资源列表

  1. kechengsheji

    0下载:
  2. 设计哈希表实现电话号码查询的数据结构系统-Hash table to achieve the design of data structures Enquiry System
  3. 所属分类:Data structs

    • 发布日期:2017-04-17
    • 文件大小:53691
    • 提供者:mac
  1. haxibiao_tongxunlu

    0下载:
  2. 自己写的一个哈希表实现的通讯录,是c++课程设计的课题,采用结构体数组实现,用线性探测法解决冲突。源码中还附有注释,适合初学者使用-Write your own implementation of a hash table book, is the c++ program design issues, implementation using an array of structures with linear detection method to resolve conflict. Anno
  3. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:961305
    • 提供者:
  1. hash

    0下载:
  2. 这个是哈希表的设计的cpp文件,用c语言编写的-This is the design of the hash table cpp file, written in c language
  3. 所属分类:Data structs

    • 发布日期:2017-04-08
    • 文件大小:400050
    • 提供者:amy
  1. hash

    0下载:
  2. 数据结构课程设计,哈希表,喜欢的可以下载回去,修改下数据即可-Curriculum design data structure, hash table, like you can download the back, you can modify the data under
  3. 所属分类:Data structs

    • 发布日期:2017-04-03
    • 文件大小:366991
    • 提供者:
  1. haxibiaokechengsheji

    0下载:
  2. 这是哈希表的课程设计,可以拿来用,创建一个电话本,哈-This course is designed hash table can be used with, create a phone book, Kazakhstan
  3. 所属分类:Data structs

    • 发布日期:2017-04-16
    • 文件大小:406936
    • 提供者:barney1
  1. hashTable

    0下载:
  2. 数据结构的课程设计,实现一个哈希表,哈希函数为模29和模229-Data structure course design, implement a hash table, hash function module 29 and module 229
  3. 所属分类:Data structs

    • 发布日期:2017-05-12
    • 文件大小:2732480
    • 提供者:CTY
  1. ProgramPeals_Ch5_20111018134544272

    0下载:
  2. 《程序员算法设计》源码,包括哈希表 链表 搜索等功能的实现,利用了重定义方法,功能完整-" Programmers algorithm design," source, including features such as a hash table implementation of the search list, use the redefined method, full-featured
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-17
    • 文件大小:31894
    • 提供者:kean
  1. Hash-table

    1下载:
  2. 哈希表 数据结构课程设计 1.1问题描述 针对自己的班集体中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查表程序。 1.2基本要求 假设人名为中国姓名的汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。构造哈希函数,用链表法处理冲突。 1.3测试数据 读取熟悉的30个人的姓名作测试。-Hash table Data Structure Course Design 1.1 Descr iption of the p
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:127412
    • 提供者:lynne
  1. haxibiao

    0下载:
  2. 设计哈希表实现电话号码查询系统。设计程序完成以下要求: (1)设每个记录有下列数据项:电话号码、用户名、地址; (2)从键盘输入各记录 ,以电话号码为关键字建立哈希表(至少要有12个以上的记录,哈希表的长度为8); (3)采用链地址法解决冲突;-Hash table to achieve the design number inquiry system. Design process is complete the following requirements: (1)
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:3660
    • 提供者:孙婕
  1. Hash-table-phonebook

    1下载:
  2. 针对某个单位电话号码簿,设计一个哈希表,并完成相应的建表和查表程序。-Create a hash table phonebook
  3. 所属分类:Data structs

    • 发布日期:2017-03-28
    • 文件大小:3105
    • 提供者:玥颖
  1. hash

    1下载:
  2. c语言实现的哈希表。哈希函数使用除留余数法,处理哈希冲突使用连地址法。包含设计文档!在dev c++平台上已验证成功-The C language implementation of the hash table. Hash function used division method, processing method using hash conflict even address. Contains design documents! In dev c++ platform has bee
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:18379
    • 提供者:郭帅
  1. haxibiao

    0下载:
  2. //使用哈希函数:H(k)=3*k MOD length,并采用开放定址法处理冲突。试对输入的关键字序列构造哈希表,哈希表长度为length, //求等概率情况下查找成功的平均查找长度,并设计构造哈希表的完整的算法。 -//Use the hash function: H (k) = 3* k MOD length, and open addressing treatment conflicts. The test input keyword sequence constructed h
  3. 所属分类:Data structs

    • 发布日期:2017-03-27
    • 文件大小:4338
    • 提供者:高斌杰
  1. haxi

    0下载:
  2. 哈希表的设计与实现。设计哈希表实现电话号码查询系统。基本要求:(1)设每个记录有一列数据项:电话号码、用户名、地址(2)从键盘输入各记录,分别以电话号码和用户名为关键字建立哈希表;(3)采用再哈希法解决冲突(4)查找并显示给定电话号码的记录;(5)查找并显示给定用户名的记录(5)在哈希函数确定的前提下,尝试各种不同类型处理冲突的方法(至少两种),考察平均查找长度的变化。 -Design and Implementation of the hash table. The design of the
  3. 所属分类:Other systems

    • 发布日期:2017-04-09
    • 文件大小:972216
    • 提供者:小海
  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
    • 文件大小:890692
    • 提供者:lee
  1. haxibiao

    0下载:
  2. 数据结构实验,完成哈希表的设计,实现电话号码的查询-data structure
  3. 所属分类:Other systems

    • 发布日期:2017-12-08
    • 文件大小:1297
    • 提供者:kate
  1. haxibioa

    0下载:
  2. 哈希表课程设计的一些代码,建立一个小型信息管理系统(可以是图书、人事、学生、物资、商品等任何信息管理系统)。-Hash table
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-11-23
    • 文件大小:2459
    • 提供者:名欣
  1. exam

    0下载:
  2. 这是我的一个课程设计,关于数据结构的迷宫求解和哈希表的实现。-This is one of my curriculum design, maze solving and hash table data structure to achieve.
  3. 所属分类:software engineering

    • 发布日期:2017-12-05
    • 文件大小:122486
    • 提供者:谢超群
  1. project

    0下载:
  2. 数据结构课程设计。基于多种查询策略的航班信息管理系统。实现一个航班信息管理系统,能对已有的航班信息文件进行管理,具体包括航班信息的查询、增加、删除等,其中查询的实现要分别基于线性表、二叉排序树、哈希表三种策略。-Data structure curriculum design. Query strategy based on a variety of flight information management system. Achieve a flight information manage
  3. 所属分类:Data structs

    • 发布日期:2017-11-21
    • 文件大小:5700910
    • 提供者:wang
  1. Hash-table

    0下载:
  2. 本代码主要实现了哈希表的设计,完成了哈希函数的相关要求。-The code is designed to achieve a hash table, the completion of the relevant requirements of the hash function.
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:1672
    • 提供者:yangguotao
  1. Data-structure

    0下载:
  2. 哈希表(带查询),哈希表的设计,树的遍历,停车场,图,约瑟夫环(链表),约瑟夫环(数组),招工考试-The hash table (with query), design of hash table, tree traversal, parking lot, figure, Joseph ring (list), Joseph ring (array), recruitment examination
  3. 所属分类:Data structs

    • 发布日期:2017-04-27
    • 文件大小:110507
    • 提供者:江中落雪
« 1 2 3 45 »
搜珍网 www.dssz.com