搜索资源列表
datastr
- 数据结构 array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和
hash_map
- STL哈希表的使用范例:包括哈希表的创建、插入、查找、删除、内存分配和释放内存。-STL use examples include : Hash Table creation, insert, search, delete, memory allocation and release memory.
hash_map
- STL哈希表的使用范例:包括哈希表的创建、插入、查找、删除、内存分配和释放内存。-STL use examples include : Hash Table creation, insert, search, delete, memory allocation and release memory.
SimpleDatabase
- 1、实现了一个简单的数据库 2、采用HASH表建立索引 3、可以从database.dat中读取表结构,生成数据库, 4、[FORM]开始的段创建表和读入缺省值 5、[DATA]保存数据库数据 6、支持多索引 7、具体使用可以看示例-achieve a simple two databases using hash table index 3, which can be read from database.da
memoryyyyy
- 存储管理实验 内存页面调度算法比较 理解内存页面调度的机理,掌握几种理论调度算法实现,并通过实验比较各种调度算法的优劣。此外通过实验了解HASH表数据结构的使用。 -experimental memory storage management pages scheduling algorithm better understanding of memory pages scheduling mechanism, Severa
wordstat_java
- 简单的词频统计,利用java 实现,使用hash表-Simple word frequency statistics, the use of java realize, the use of hash table
paixu
- hash表的使用,使用hash函数并包含解决冲突的方法-the use of hash table, use the hash function and includes a solution to the conflict
haxibiao
- C语言实现哈希表,方便,原代码,欢迎下载,绝对真的-C language hash table, convenience, the original code, welcome to download, absolutely true
java3
- 创建一个包装学生信息的java类:包括name,number, age,height,创建该对象的数组用于表示n个学生的信息,并具备显示所有学生信息,查找某个学生的功能。(有输入流,输入数据,使用hash表存储数据) 包含相关代码和运行结果-Create a package of java category of student information: including name, number, age, height,
TsinghuaCdatastructures
- 清华+殷人昆C++数据结构 幻灯片教学课件 通过本课程的学习,应达到知识和技能两方面的目标: 1、知识方面:从数据结构的类定义和对象的使用,以及存储表示和操作的实现两个层次,系统地学习和掌握常用的基本数据结构(包括数组、顺序表、多项式、字符串、链表、栈与队列、优先级队列、广义表、树与森林、二叉树、堆、集合、图、搜索结构、索引结构、散列结构等)及其不同的实现,了解并掌握分析、比较和选择不同数据结构、不同存储结构、不同算法的原则和
hash
- 设计高效算法往往需要使用Hash链表,常数级的查找速度是任何别的算法无法比拟的,Hash链表的构造和冲突的不同实现方法对效率当然有一定的影响,然 而Hash函数是Hash链表最核心的部分,本文尝试分析一些经典软件中使用到的字符串Hash函数在执行效率、离散性、空间利用率等方面的性能问题。-The design of efficient algorithms often need to use the Hash list, find th
SDCARD_FATFileSystem
- [FAT文件系统读写程序(目前在已经在fs2410开发板上经过sd卡测试,实现多级目录,文件的创建读写,24位bmp的读写),对FAT16文件系统进行了改进,主要是引入了缓冲队列,同时对缓冲队列使用了hash表的管理-[FAT file system read and write program (current board has been developed in fs2410 sd card test, multi-level d
assignment_2_2
- Java的哈希表实现程序,按h可以看程序的使用说明-Java' s hash table implementation process, press h to see the program instructions can be
hashtable
- 介绍怎样创建一个哈希表和链表的使用方法,可供入门参考-Describes how to create a hash table and linked list to use
hash
- hash表的实际应用举例说明!该程序从hash表定义到使用的过程!-the practical application of the hash table is an example! The program is defined from the hash table to use the process!
Hash-table
- 哈希表的建立和查找:使用哈希表表示全国各个省份,并进行查找。-The establishment of the hash table and Find: Use hash table to represent the various provinces of the country, and to find.
hash
- 哈希表实现字母表的索引,使用拉链法来处理哈希表中的冲突。-Hash table to achieve index alphabet, using the zipper method to deal with conflicts in the hash table.
hashtable
- 用实例详细讲解了哈希表的使用方法与作用,哈希表的操作等有详实的例子。-Use examples to explain in detail the use and effect of hash table, the hash table operation and detailed examples.
hash
- 本PPT介绍了数据结构里面关于哈希表的定义和使用等相关细节,对于初学者有巨大帮助。(This PPT introduces the details of the definition and use of the hash in the data structure, which is of great help for beginners.)
hash
- 使用hash表实现快速插入数据,快速查询数据(Using hash table to quickly insert data and quickly query data)