搜索资源列表
排序算法、字典和B-树的C++语言实现
- 排序算法、字典和B-树的C++语言实现 代码内容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert sort shl.c sort: shell sort has.c dictionary: hash tables bin.c dictionary: binary tree rbt.c dictionary
dic
- 字典树算法 算法描述为:由字母a~z所组成的字符串的一个集合中,各个字符的长度之和为n。设计一个O(n)时间的算法,将这个集合中所有字符串依字典进行排序。注意,这里可能存在非常长的字符串
trie
- 字典树实现,实现对单词的添加和删除。 速度较快
dictionary-tree-soursecode
- 此代码是字典树的实现源代码,字典树是一种数据结构,用它可以实现对各种单词的检索。而对每一个单词的查找次数是单词的长度。做acm题很有用,应用程序中相信也能优化很多算法!
huff_file
- 此代码用霍夫曼树作为压缩和解压缩的存储结构,实现了字典压缩算法,用C便已成功。-this code tree with Hoffman as the compression and decompression of the storage structure and achieve a dictionary compression algorithm has been successfully used C.
排序算法、字典和B-树的C++语言实现
- 排序算法、字典和B-树的C++语言实现 代码内容 包括以下算法: qui.c sort: quicksort qsort.c sort: qsort ins.c sort: insert sort shl.c sort: shell sort has.c dictionary: hash tables bin.c dictionary: binary tree rbt.c dictionary
XGFTree
- 提供一个基本数据字典(以数据字典为例)的一个树型控件。-provide a basic data dictionaries (data dictionary for example) of a tree controls.
dancitongji
- 对读入的某个文本文件input.txt中,拆出英文单词,输出一个按字典顺序排列的单词表,结果输出在文本文件output.txt中,每个单词一行,并在单词后输出该单词出现的个数,两个字段之间用逗号分隔。约定单词仅由英文字母组成,单词间由非英文字母分隔,相同单词只输出一个,大小写不区分。 利用二叉树实现-the right time to a text file input.txt, divestment English words,
Project3finishOK
- 动态规划实现的字典排序,构建最优二叉树,小心你的内存啊!-Dynamic Programming dictionary order to construct the optimal binary tree, carefully your memory ah!
dic
- 字典树算法 算法描述为:由字母a~z所组成的字符串的一个集合中,各个字符的长度之和为n。设计一个O(n)时间的算法,将这个集合中所有字符串依字典进行排序。注意,这里可能存在非常长的字符串-Dictionary tree algorithm algorithm is described as: a ~ z by the letter string composed of a collection of all the characte
English
- 该文件中包含有源代码及一部分的文档,该系统是一个小型的英语单词字典的系统.-The document contains the active part of the code and documentation, the system is a small dictionary of English words of the system.
trie
- 字典树实现,实现对单词的添加和删除。 速度较快-Dictionary tree realization, the realization of the word to add and remove. Faster
dictionary-tree-soursecode
- 此代码是字典树的实现源代码,字典树是一种数据结构,用它可以实现对各种单词的检索。而对每一个单词的查找次数是单词的长度。做acm题很有用,应用程序中相信也能优化很多算法!-This code is the dictionary tree realize the source code, the dictionary is a tree data structure, it can be achieved on a variety of w
LookUpDictionary
- 一个快速,高效的字典查询软件。采用改进的红黑树的搜索算法。-A fast, efficient software dictionary query. Improved red and black tree search algorithm.
DictionaryTree
- 字典树算法,可以很方便的实现多叉树,而且查找很方便,是ACM算法设计中常用的数据结构-Dictionary tree algorithm, can be very convenient multi-tree, and find very convenient is the design of ACM algorithms commonly used data structure
DataStructureUtil
- 该压缩文件夹内有诸多常用算法和数据结构的c++模板编程实现,可作为您程序开发的辅助工具。具体有栈、队列、优先队列、字典、二叉树、图(包括节点的遍历,连通性判断,3种经典最短路径算法的实现等)。-The compressed folder, there are many commonly used algorithms and data structures c++ Template programming, can be used as
trie_array
- tire树(字典树),使用数组实现,用于字符串处理。-tire tree, using array implementation.
trie_sibling
- tire树(字典树),使用左儿子右兄弟实现,用于字符串处理。-tire tree (dictionary tree), use the left hand son brothers realize the right for the string handle.
dictionarytree
- 利用huffman字典树,对输入语句单词进行统计(Use the Huffman dictionary tree to count the input statement words)
Trie_and_Huffman
- 功能1:使用一种树型结构来实现我们的单词计数功能——Trie树 功能2:Huffman树进行编码 程序输入: 第一行为一个正整数n,表示输入单词的总数。 接下来的n行,每行为一个单词,单词由不超过10个的小写英文字母组成。 接下来的一行为一个正整数m,表示查询的次数。 接下来的m行,每行为一个数字和一个查询,当数字为1时,查询为单词,输出该单词出现的次数(可以为0);当数字为2时,查询为Huffman编码,输出对应的单词(该