搜索资源列表
MapKit_1.4
- 轻松创建哈希表的跨平台(Unix,Windows)库-This is a cross-platform (unix, windows) library to easily create and use hash tables (similar to STL s hash_map or python dictionaries) in C. Multiple keys and values types are provided (int, double, strings,...), and
548945184
- 数据结构的课设。包括哈希表、二叉树以及各种排序算法。应有尽有-Class data structure set. Including hash tables, binary trees, and various sorting algorithms. Everything
sjjgsy
- 数据结构实验验收源码,包含二叉树的遍历,图的遍历,停车场管理系统以及哈希表的应用-Experimental data structure acceptance source, contains two binary tree traversal, traversal, parking management system and the application of hash table
hash_table
- 在Linux环境下,用动态数组和双向链表实现的哈希表-Dynamic arrays and hash tables doubly linked list implementation
hashtable
- 用实例详细讲解了哈希表的使用方法与作用,哈希表的操作等有详实的例子。-Use examples to explain in detail the use and effect of hash table, the hash table operation and detailed examples.
hashlist
- 实现了哈希表的链表形式。每秒种查找百万次-The hash table to achieve the list form. Search millions of times per second
Data-structure
- 哈希表(带查询),哈希表的设计,树的遍历,停车场,图,约瑟夫环(链表),约瑟夫环(数组),招工考试-The hash table (with query), design of hash table, tree traversal, parking lot, figure, Joseph ring (list), Joseph ring (array), recruitment examination
strtab
- 通过哈希表,缓冲器实现字符串表,是根据C++实践之路中自己编的一个小例程,比较适合初学者对C++理解-By hash table, a buffer to achieve a string table
HashTable_Array
- 用数组实现的哈希表,包括哈希表的构建、哈希函数的设计。-Using an array of the hash table, the hash table is constructed including the design of the hash function.
hashTable
- 哈希表(hash table),在visual c++中,分别使用链表和数组来实现的,可直接调用-hash table, complemented with linkedList and array by visual c++
Hash-table-design
- 针对某个集体(比如你所在的班级)中的“人名”设计一个哈希表,使得平均查找长度不超过R,完成相应的建表和查表程序。-For a collective (such as your class) in the names design a hash table, making the average to find the length of not more than R, to complete the appropriate procedures to build tables and lo
HASH-cpp
- hash表测试实例,实现一个简单的哈希表的应用实例-hash table test cases to achieve a simple hash table application examples
hash
- 哈希表的实现,C++源代码,codeblocks调试成功-Achieve the hash table, C++ source code, codeblocks successful commissioning
Hash_Table
- 哈希表,数据结构,完整代码,值得学习。C++语言-Hash tables, data structures, complete code, it is worth learning
hashtable
- 类实现一个哈希表,两个.h文件,一个.cpp文件,实现了哈希表的遍历。-Class implements a hash table, two.H file, a.Cpp file, the realization of the hash table traversal
SpellChecker
- 用哈希表实现一个拼写检查器spellchecker,给定一个字典, 输入一个文本后,输出拼写有误的单词,并给出用户可能想要表达的正确的单词- In this project, you ll build a hash table and see an example of hashing in action. Many applications, including word processors, text editors, and email clients, include a sp
haxibiao
- 关于哈希表的数据结构实现,是用C语言编写的,简单实用,你值得拥有!-About the data structure of the hash table implementation is written in C language, simple and practical, you deserve!
MajorAssignmentOne
- 简单的哈希表程序代码,需要用户输入数字,初始化哈希表为空-initialize hash table to-1s, for empty
the-k_nearst-alogrithm
- 一种快速搜索散乱点云数据 k 邻近的算法 对逆向工程中散乱点云数据的 k 近邻搜索,提出一种快速搜索散乱点云 k 邻近点的算法。该算法根据 点云数据的范围、点的总数及最近点数目 k,确定合适的立方体边长,采用空间划分策略,把数据划分成多个子立方体; 然后用哈希表记录每个子立方体所包含的数据点及每个点所在的立方体索引号,并排除不包含数据的子立方体,以此 确定邻近点的最佳搜索范围。实验结果表明:该算法有效的提高 k 近邻搜索的速度,同时保证了搜索结果的正确性。 -a fast m
MaxPointsonaLine
- Given n points on a 2D plane, find the maximum number of points that lie on the same straight line. 分析:首先要注意的是,输入数组中可能有重复的点。由于两点确定一条直线,一个很直观的解法是计算每两个点形成的直线,然后把相同的直线合并,最后包含点最多的直线上点的个数就是本题的解。我们知道表示一条直线可以用斜率和y截距两个浮点数(垂直于x轴的直线斜率为无穷大,截距用x截距),同时还需要保存每