搜索资源列表

  1. datast

    0下载:
  2. array.h: 安全数组 linkedlist.h: 普通表 dclinkedlist: 双向循环链表 hashtable.h: 哈希表 binstree.h: 二叉搜索树 avltree.h: AVL 树 如果要存储集合(元素不可重复)并快速查找,最佳的是 binstree.h(二叉搜索树)。 如果要存储二维或更高维的表格,最佳的是 hashtable.h(哈系表)。AVL 树的插入成本非常高(删除函数也没有实现),但 AVL 的搜
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:16384
    • 提供者:王飞
  1. hxsf00

    0下载:
  2. 数据结构中的哈希表算法。做来完成实验的。-Hash algorithm of data structure. It uses for the experiment.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:孙云
  1. Hashtab

    0下载:
  2. 数据结构算法之一,哈希表的构成,冲突采用双哈希再散列解决-algorithm data structure, the composition Hash Table, double-conflict re-hash Hash solution
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:221184
    • 提供者:ctp
  1. sufa

    1下载:
  2. 假设人名为汉语拼音形式。待填入哈希表的人名共有30个,取平均查找长度的上限为2。哈希函数用除留余数法构造,用伪随机探测再散列法处理冲突。 测试数据:取本班同学姓名。-assumptions were called Chinese pinyin form. Hash Table question Enter the names of a total of 30, you take the average length of a maxim
  3. 所属分类:C#编程

    • 发布日期:2024-05-19
    • 文件大小:44032
    • 提供者:杨斌
  1. mycompiler

    0下载:
  2. 编译器,词法分析和语法分析,里面利用到了哈希表来加快搜索字符表速度.-compiler, lexical analysis and parsing, to use inside the hash table to expedite the search speed character tables.
  3. 所属分类:编译器/词法分析

    • 发布日期:2024-05-19
    • 文件大小:54272
    • 提供者:春风秋雨
  1. 统计单词个数

    0下载:
  2. 利用哈希表统计文本文件中单词的个数,哈希函数的实现为取模法,利用链地址法解决冲突。-use Hash Table Statistics text file number of words, the realization of Hash Functions for Remainder law, the use of chain law addresses solution to the conflict.
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:5120
    • 提供者:米子
  1. 2005413185023558

    0下载:
  2. 本程序是用哈希表实现词频统计,用java实现的,仅用于网友学习之用。-this program is to achieve Hash Table Frequency statistics, using java to achieve, and only for netizens learning.
  3. 所属分类:C#编程

    • 发布日期:2024-05-19
    • 文件大小:26624
    • 提供者:义军
  1. 176869120_HashAlgorithmTest

    0下载:
  2. 哈希算法测试。对我学习帮助挺大,上传共享。-Hash algorithm testing. I learn to help getting bigger, upload share.
  3. 所属分类:P2P编程

    • 发布日期:2024-05-19
    • 文件大小:72704
    • 提供者:
  1. haxichazhao

    0下载:
  2. 此程序应用于数据结构,专门可用来对哈希表进行查找-this data structure to be applied specifically can be used to search for Hash Table
  3. 所属分类:C#编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:wangjie
  1. studentNoSQL

    0下载:
  2. 我们的作业,没有连接数据库。而使用的是哈希表。希望对大家能有帮助!-our operations, is not linked to the database. The use of the Hash Table. We hope to be able to help!
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:9216
    • 提供者:严绍峻
  1. 060626

    0下载:
  2. 哈希表设计 针对某个集体中人名设计一个哈希表,使得平均查找长度不超过R,并完成相应的建表和查表程序。-Hash Table design is a design collective Names Hash Table 1, bringing the average length not exceeding find R, and completion of the corresponding construction and Loo
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:6144
    • 提供者:guoxingxi
  1. hashi

    0下载:
  2. 哈希表 哈希表 哈希表 哈希表 -Hash Table Hash Table Hash Table Hash Table Hash Table Hash Table Hash Table Hash Table
  3. 所属分类:数据结构常用算法

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:李霞
  1. csha1_demo

    0下载:
  2. 可用于P2P分布式网络的哈希算法, 带有例子,直接复制出HASH类即可方便使用.-for peer-to-peer distributed network of Hash algorithms, with examples. direct cloning HASH category will be easier to use.
  3. 所属分类:数学计算/工程计算

    • 发布日期:2024-05-19
    • 文件大小:32768
    • 提供者:纪灵
  1. HashTableinDS

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

    • 发布日期:2024-05-19
    • 文件大小:2048
    • 提供者:wjs
  1. testHashtable

    0下载:
  2. 测试哈希表,对初学者有帮助,请看测试部分-test hash table, for beginners help, please look at the testing of some
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-19
    • 文件大小:18432
    • 提供者:luo
  1. hash.c++

    0下载:
  2. 一个开源的哈希表源码实现,算法比较简短精简-a revenue source to achieve hash table, the relatively brief concise algorithm
  3. 所属分类:加密解密

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:kanyu
  1. hash__table

    0下载:
  2. 一个关于哈希表的例子,里面有哈希表的几点重要的介绍-a hash table for example, a hash table inside Several important introductory
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-19
    • 文件大小:6144
    • 提供者:wanghao
  1. mee

    0下载:
  2. 能很好解决排序、皇后、哈希表问题,适合学生课程设计等等方面-can properly resolve scheduling, Queen's, hash table, suitable for students of curriculum design, etc.
  3. 所属分类:Windows编程

    • 发布日期:2024-05-19
    • 文件大小:1024
    • 提供者:
  1. sanliebiao

    0下载:
  2. 散列表又叫哈希表,它是通过哈希函数来确定数据元素存放位置的一种特殊表结构。程序实现对指定文本文件中的单词进行检索,并可得哈希值-hashtable known as hash table, it is through the hash function to determine the location of data elements stored in a special table structure. Program of th
  3. 所属分类:其他小程序

    • 发布日期:2024-05-19
    • 文件大小:12288
    • 提供者:dfa
  1. GetCRC32(CS)

    0下载:
  2. CRC32哈希算法的C#版源码.采用的是动态生成码表的方法.-CRC32-hash algorithm in C# version of the source code. The code is dynamically generated table method.
  3. 所属分类:加密解密

    • 发布日期:2024-05-19
    • 文件大小:23552
    • 提供者:李哓
« 1 2 34 5 6 7 8 9 10 ... 50 »

源码中国 www.ymcn.org