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

搜索资源列表

  1. xiaoxingyinghancidian

    0下载:
  2. 问题描述:设计一个英汉词典,支持Member的查找、插入、删除操作。 基本要求:实现字典的常用方法有:有序线性表(用二分检索实现)、AVL树(二叉搜索树)、Patricia Tree、散列表等,任选一种方法实现字典的操作,查找单词、插入单词(插入时,先查找,找不到插入,找到提示用户)、删除单词(删除时,先查找,找到删除,找不到提示用户)。字典是按字母顺序排列的,不能用顺序查找,插入或删除单词后,要保持字典的有序性。 测试数据:任一英文单词。 提高要求:选用两种以上的方法实现字典的操作
  3. 所属分类:Data structs

    • 发布日期:2017-04-04
    • 文件大小:928
    • 提供者:姚伦帮
  1. 11

    0下载:
  2. 稀疏矩阵的元素值的范围为1~1000之间的整型数。利用随机函数按1 的非0元素概率生成这个矩阵,并将矩阵存入闭散列表中。并检验最后生成的非0元素的个数是否为1 -Sparse matrix elements of the scope of the value for 1 ~ 1000 between integer. The random functions with 1 of the 0 element probability generating the matrix, which clo
  3. 所属分类:assembly language

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

    0下载:
  2. 散列表实现电话号码查找系统。 (1) 设每个记录有下列数据项:用户名、电话号码、地址; (2) 从键盘输入各记录,以用户名(汉语拼音形式)为关键字建立散列表; (3) 采用一定的方法解决冲突; (4) 查找并显示给定电话号码的记录; -The hash table phone number lookup system. (1) Let each record the following data: user name, phone number, address in
  3. 所属分类:Data structs

    • 发布日期:2017-05-06
    • 文件大小:1535694
    • 提供者:卧龙
  1. san-lie-biao

    0下载:
  2. 散列表实现个人信息 散列表---实现个人信息管理 一、 数据结构 个人信息:至少五个域 散列表:以姓名为关键字,平均查找长度不超过2.5,确定表大小,设计散列函数,冲突处理方法(建议采用拉链法)。 文件:个人信息以文件形式保存 二、 基本算法 插入个人信息 删除个人信息 按关键字查找个人信息 按非关键字查找个人信息 统计两种查找过程的平均查找长度 三、 功能要求 读文件数据建立散列表 保存散列表到文件 散列表遍历 修改个人信息
  3. 所属分类:CSharp

    • 发布日期:2017-04-02
    • 文件大小:153624
    • 提供者:若水
  1. student

    0下载:
  2. 对于两个C程序,设计并实现两种不同的基于散列表的检测算法,计算两个程序的相近度,并分析比较两种算法的效率。-Two C programs, the design and two different detection algorithm based on the hash table, calculate the two procedures are similar, and analyzed to compare the efficiency of the algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-04-02
    • 文件大小:3086
    • 提供者:H
  1. Student

    0下载:
  2. 对于两个C程序,设计并实现两种不同的基于散列表的检测算法,计算两个程序的相近度,并分析比较两种算法的效率。-Two C programs, the design and two different detection algorithm based on the hash table, calculate the two procedures are similar, and analyzed to compare the efficiency of the algorithm.
  3. 所属分类:Other systems

    • 发布日期:2017-04-07
    • 文件大小:2412
    • 提供者:kexinxin
  1. cblocks_disjointSet

    0下载:
  2. 这个是散列表的实现,参考了《数据结构》一书的方法,希望有帮助~-this is the fulfil of the disjointSet
  3. 所属分类:Other systems

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

    0下载:
  2. Hash 散列表的算法实现,有详细的代码解释-Hash hash table algorithm, a detailed interpretation of the code
  3. 所属分类:Windows Kernel

    • 发布日期:2017-12-09
    • 文件大小:9268
    • 提供者:joyking
  1. sanliebiao

    0下载:
  2. 数据结构中适用于外存访问的散列表,方便程序对外存的访问,降低时间复杂度-The hash table data structure applies to the external memory access, convenient program the external memory access, reduce the time complexity
  3. 所属分类:CSharp

    • 发布日期:2017-11-18
    • 文件大小:2021
    • 提供者:yang
  1. 4

    0下载:
  2. Hash表应用 任务 :设计散列表实现电话号码查找系统。 基本要求: 1) 设每个记录有下列数据项:电话号码、用户名、地址; 2) 从键盘或文件输入各记录,不少于30个,以电话号码为关键字建立散列表; 3) 采用开放定址的方法解决冲突; 4) 查找并显示给定电话号码的记录; -Hash Table Application task: design hashtable phone number lookup system. Basic requirements: 1
  3. 所属分类:Data structs

    • 发布日期:2017-11-04
    • 文件大小:1773271
    • 提供者:一一
  1. check

    0下载:
  2. 1.利用实验一建立的有序表,采用折半查找实现对某一已知的关键字的查找。 2.随机产生一组关键字,利用二叉排序树的插入算法建立二叉排序树,然后删除某一指定关键字元素。 3.已知散列函数为H(key)=key p(p为自定义的常数),冲突处理方法分别为线性探测法和外拉链法,建立散列表并实现查找某一指定关键字元素。-1. Experiment established orderly table, using a binary search to achieve a known keyword
  3. 所属分类:Other systems

    • 发布日期:2017-12-01
    • 文件大小:11959
    • 提供者:BidyBai
  1. dictionary

    0下载:
  2. 利用散列表实现英汉字典并设计程序实现相关功能-The hash table Dictionary and design program
  3. 所属分类:Data structs

    • 发布日期:2017-11-26
    • 文件大小:4920049
    • 提供者:Even Lin
  1. a-similar-map-simple-hash-table

    0下载:
  2. 用C写的一个类似map的简单散列表,用于读取自定义的配置项,可以实现大量配置项的快速访问。-Written in C, a similar map simple hash table is used to read the custom configuration items, quick access to a large number of configuration items.
  3. 所属分类:MPI

    • 发布日期:2017-11-05
    • 文件大小:6338
    • 提供者:chuminnan
  1. open_hash

    0下载:
  2. 外散列表,与内散列一样对产生的10000个数据进行分桶存储-Scattered outside the list, the same as on the inner hash produced 10,000 barrels of stored data points
  3. 所属分类:Other systems

    • 发布日期:2017-04-05
    • 文件大小:1032
    • 提供者:那强
  1. HashTable

    0下载:
  2. 哈希散列表,适用于数据结构与算法的学习者学习,进阶算法就靠它-Hash hash table for data structures and algorithms learners, advanced algorithm depends on it
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-07
    • 文件大小:1104
    • 提供者:xhjcehust
  1. closeHashTable

    0下载:
  2. Visual Studio 2008下运行成功 实现闭散列表的类的编写 数据结构-Running under Visual Studio 2008 successfully closed the preparation of the hash table data structure class
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:528607
    • 提供者:李依宁
  1. openHashTable

    0下载:
  2. Visual Studio 2008下运行成功 开闭散列表的类 数据结构-Run successfully under Visual Studio 2008 opening and closing of the hash table class data structure
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:516273
    • 提供者:李依宁
  1. Hash

    0下载:
  2. 1.设每个记录有下列数据项:电话号码、用户名、地址; 2.从键盘输入各记录,分别以电话号码和用户名为关键字建立散列表; 3.采用一定的方法解决冲突; 4.查找并显示给定电话号码的记录; 5.查找并显示给定用户名的记录。 --【进一步完成内容】 1.系统功能的完善; 2.设计不同的散列函数,比较冲突率; 3.在散列函数确定的前提下,尝试各种不同类型处理冲突的方法,考察平均查找长度的变化。-This is a program
  3. 所属分类:Other windows programs

    • 发布日期:2017-05-11
    • 文件大小:2359030
    • 提供者:鈊啲淚佷
  1. address-list

    0下载:
  2. 算法课程设计中的用散列法构建通讯录,设计散列表实现通讯录查找系统。-Curriculum design algorithm built using hashing address book, address book designed to achieve a hash table lookup system.
  3. 所属分类:Education soft system

    • 发布日期:2017-04-14
    • 文件大小:3549
    • 提供者:
  1. Hash-table-and-its-application

    0下载:
  2. 散列表根据关键码值(Key value)而直接进行访问的数据结构,通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。-According to the value of the hash table key (Key value) directly access the data structure to access the record by the key values ​ ​ to the mapping table in a position to sp
  3. 所属分类:Data structs

    • 发布日期:2017-04-07
    • 文件大小:756134
    • 提供者:
« 1 2 34 5 »
搜珍网 www.dssz.com