搜索资源列表
darts-0.2.tar
- 双数组辞典生成程序。利用双数组实现trie算法,对于不定长度共同前缀查询情况,比哈希方法更为有效。经常用于分词辞典的制作。-array dictionary-generation procedures. Using two arrays to achieve Trie algorithm for the indefinite length of the inquiry common prefix than Hash methods more effective. Frequently used
dictionary
- 本程序利用Trie树实现了英语单词辅助记忆系统,并完成了相关的建表,查表以及存档等操作。
trie
- trie字典树 字典树C语言实现的算法。-trie dictionary tree C language implementation of the algorithm.
TRIE
- 字典树,实现字典树的插入删除查找功能。效率高-Dictionary tree, insert the tree removed to achieve a dictionary lookup function. Efficient
zidianshu
- 字典树(Trie)是一种用于快速字符串检索的多叉树结构。其原理是利用字符串的公共前缀来降低时空开销,从而达到提高程序效率的目的。-Dictionary tree (Trie) is a string to search for rapid multi-branch tree structure. The principle is to use the string prefix to reduce the time and space for public spending so as to i
TireTree
- Trie树,又称字典树、单词查找树,是一种树形结构,用于保存大量的字符串。它的优点是:利用字符串的公共前缀来节约存储空间,是一种比较简单的数据结构。理解起来比较简单,但Trie树也有它的缺点,Trie树的内存消耗非常大。-Trie tree, also known as a dictionary tree, word search tree is a tree structure used to save a lot of strings. Its advantages are: the use
AhoCorasick.tar
- 本源码是AhoCorasick算法实现,它充分利用了词典算法双数组(DoubleArray Trie),既能自己输入指定的多个词进行多模式匹配,也可以将具有指定格式的词典的所有词作为多模式匹配的多个模式-The source code is AhoCorasick algorithm, which make full use of the dictionary algorithm pairs of arrays (DoubleArray Trie), both enter the designa
TireTree
- Trie树,又称字典树、单词查找树,是一种树形结构,用于保存大量的字符串。它的优点是:利用字符串的公共前缀来节约存储空间,是一种比较简单的数据结构。理解起来比较简单,但Trie树也有它的缺点,Trie树的内存消耗非常大。-Trie tree, also known as a dictionary tree, word search tree is a tree structure used to save a lot of strings. Its advantages are: the use
dictionary
- 利用Trie树实现一个英语单词辅助记忆系统,完成相应的建表和查表程序-Trie tree using an English word to achieve auxiliary memory system, complete the appropriate procedures for the construction table and look-up table
HASH(Trie)-
- hash trie树 字典树,完整的sdk开发包 具有说明文档-hash trie tree dictionary tree, the complete development kit with documentation sdk
Course-design-English-dictionary
- Trie树通常作为一种索引树,这种结构对于大小变化很大的关键字特别有用。利用Trie树实现一个英语单词辅助记忆系统,完成相应的建表和查表程序。-Trie trees usually as a tree, the structure on the index of the key word size change a lot is especially useful. Use Trie tree realize one English word memory system, complete au
trie
- N-trie树 实现字典树,可以从TXT文件中读取数据-N-trie tree to achieve the dictionary tree, you can read data from a TXT file
NYOJ.290.DictionaryTree
- 字典树,Trie树,查找插入效率都很高的一种高级数据结构。-Dictionary tree, Trie, an advanced data structures to find the insertion efficiency high.
adarrts-02tarr
- 双数组辞典生成程序源码。运用双数组实现trie算法,对于不定长度共同前前缀查询情况,比哈希方法更为有效。经常用于分词辞典的制作。 可直接使用。 -The dual array thesaurus program source code is generated. The use of double-array trie algorithm for indefinite length common prefix query before, Bi Haxi method is more effe
TRIE
- 字典树的插入和查找,了解字典树的方便之处-The insertion Find of the dictionary tree
English-dictionary
- 数据结构课设--英语词典的维护和识别--Trie树-Data structures course set- English dictionary maintenance and identification- Trie tree
EDMI
- 数据结构课设--英语词典的维护和识别--Trie树-Data structures course set- English dictionary maintenance and identification- Trie tree
datastruct
- 现在有一个英文字典,单词量很大,达到100多万的单词,而且还有很多重复的单词。 单词(词组)检索,字符串哈希,hash散列算法,Trie树结构-Now there is an English dictionary, the word is large, reaching more than 100 million words, but there are many duplicate words. Word (phrase) search, string hash, hash hash al
ustringtrie
- \file \brief C API: Helper definitions for dictionary trie APIs.Return values for BytesTrie::next(), UCharsTrie::next() and similar methods.
trie
- trie 树实现 输入 输入的第一行为一个正整数n,表示词典的大小,其后n行,每一行一个单词(不保证是英文单词,也有可能是火星文单词哦),单词由不超过10个的小写英文字母组成,可能存在相同的单词,此时应将其视作不同的单词。接下来的一行为一个正整数m,表示小Hi询问的次数,其后m行,每一行一个字符串,该字符串由不超过10个的小写英文字母组成,表示小Hi的一个询问。 在20 的数据中n, m< 10,词典的字母表大小< 2. 在60 的数据中n, m<