搜索资源列表
datastr
- 数据结构 array.h: 安全数组,可自动增长大小(随机访问,但扩充时效率低) linkedlist.h: 普通链表(可随机访问,但访问效率低) dclinkedlist: 双向循环链表(不可随机访问,但插入、遍历的效率都比普通链表高) hashtable.h: 哈希表(使用键值标识元素,键值一样的元素即认为相等,需重载 == 运算符并由用户定义哈希函数) binstree.h: 二叉搜索树(需重载 == 和 < 运算符) avltree.h: AVL 树(
sanliebiao
- 散列表又叫哈希表,它是通过哈希函数来确定数据元素存放位置的一种特殊表结构。程序实现对指定文本文件中的单词进行检索,并可得哈希值-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 the DOE document, the text word
2007-Multi-Task-Data-Structure
- 《多任务下的数据结构》随书的源代码。探讨多任务下的常用数据结构的实现,如AVL,红黑树,以及一些符合数据结构,如哈西链表,哈希红黑树。可以作为STL数据结构的多任务扩展。
hash
- 数据结构习题集上哈希表的算法 上传上来给大家一起分享一下-Data Structure Problem Set up hash table algorithm for upload to share with everyone
NSS
- 封装了Linux内核开发中的一些重要数据结构,包括队列、哈希表等,以及一些网络函数和多线程互斥机制-Encapsulates some of the important data structures in the Linux kernel developers, including queues, hash tables, etc., as well as some network functions and multi-threaded mutex mechanism
hash-table
- C/C++数据结构中的重要算法哈希表的实现源代码-The source code to realize the Hash table ,an important algorithm based on C/C++ the data structure
Data-Structure-Algorithm-Java
- 二项堆,哈希表,排序等数据结构和算法的实现~-Disjoint sets, sorting, two heap, hash tables and other data structures implemented in Java ~
assembler
- 该程序使用了I/O流对存有汇编语言文本进行读入以及对操作结果的文本输出;运用了数据结构的栈结构,简化了文本内容的识别;将文本中的一行封装成类对象hang;将系统的一些操作指令通过哈希结构封装在symtab类中;将文本获得的操作指令封装在optab中;自己还另外编写了十进制转十六进制,int类型和对应的字符串进行互转的方法供程序使用。-The program uses the I/O stream of assembly language there and read the text on th
Cpp1
- 基于VC++6.0的c++语言编程利用哈希表数据结构实现对班级学生信息管理-VC++6.0 c++ programming language to achieve the use of hash table class student information management based on data structure
HASH
- 散列表(Hash table,也叫哈希表),是根据关键码值(Key value)而直接进行访问的数据结构。也就是说,它通过把关键码值映射到表中一个位置来访问记录,以加快查找的速度。这个映射函数叫做散列函数,存放记录的数组叫做散列表。给定表M,存在函数f(key),对任意给定的关键字值key,代入函数后若能得到包含该关键字的记录在表中的地址,则称表M为哈希(Hash)表,函数f(key)为哈希(Hash) 函数。-Hash table
Delphi_scr
- 这是[Delphi算法与数据结构]一书所附的源码,包括了所有算法,对于使用DELPHI的朋友一定非常有帮助,里面涵盖了大多数实用算法,可以拿来就用,比如哈希、生产/消费等算法,希望能帮助大家。-This is [Delphi Algorithms and Data Structures] appended a source, including all algorithms, for use DELPHI friends will be very helpful, which covers mo