搜索资源列表
trie
- 1. Trie树作为一种索引树,这种结构对于大小变化很大的关键字特别有用。利用Trie树实现一个英语单词辅助记忆系统,完成相应的建表和查表程序。2. 不限定Trie树的层次。每个叶子结点只含一个关键字,采用单字符逐层分割的策略,实现Trie树的插入、删除和查询的算法,查询可以有两种方法:查询一个完整的单词或者实现以某几个字母开头的单词。
Trie
- Trie树既可用于一般的字典搜索,也可用于索引查找。对于给定的一个字符串a1,a2,a3,...,an.则采用TRIE树搜索经过n次搜索即可完成一次查找。不过好像还是没有B树的搜索效率高,B树搜索算法复杂度为logt(n+1/2).当t趋向大,搜索效率变得高效。怪不得DB2的访问内存设置为虚拟内存的一个PAGE大小,而且帧切换频率降低,无需经常的PAGE切换。
LC-trie
- lc-trie 路由查找算法, lc-trie 路由查找算法
Trie
- 数据挖关联规则,发现数据间的关系,如超市的数据-data dredging association rules, found the relationship between data, such as supermarket data
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 mo
trietree
- trie tree, 是一个高效处理字符串的比较常见的算法,能够让我们在复杂度 O(log(n))的情况下插入和查询一个字符串-trie tree, is an efficient treatment of the more common string algorithms, to enable us to the complexity of O (log (n)) the case of insert and query a stri
0
- 用Trie树构建英文字典? 肨rie树构建英文字典用Trie树构建英文字典-Trie tree used to build an English language dictionary?肨rie tree constructed English dictionary?肨rie trees used to build English Dictionary English Dictionary Trie Tree Construction
TrieTree
- 什么是Trie树? Trie树的性质和特点 Trie树的实现 Trie树是做什么的? -What is the Trie tree? Trie tree of the nature and characteristics of the realization of Trie tree Trie tree is doing what?
trie
- 1. Trie树作为一种索引树,这种结构对于大小变化很大的关键字特别有用。利用Trie树实现一个英语单词辅助记忆系统,完成相应的建表和查表程序。2. 不限定Trie树的层次。每个叶子结点只含一个关键字,采用单字符逐层分割的策略,实现Trie树的插入、删除和查询的算法,查询可以有两种方法:查询一个完整的单词或者实现以某几个字母开头的单词。-1. Trie index tree as a tree, this structure chang
trie
- 字典树实现,实现对单词的添加和删除。 速度较快-Dictionary tree realization, the realization of the word to add and remove. Faster
Trie
- Trie树既可用于一般的字典搜索,也可用于索引查找。对于给定的一个字符串a1,a2,a3,...,an.则采用TRIE树搜索经过n次搜索即可完成一次查找。不过好像还是没有B树的搜索效率高,B树搜索算法复杂度为logt(n+1/2).当t趋向大,搜索效率变得高效。怪不得DB2的访问内存设置为虚拟内存的一个PAGE大小,而且帧切换频率降低,无需经常的PAGE切换。-Trie tree can be used for general dict
dictionary
- 本程序利用Trie树实现了英语单词辅助记忆系统,并完成了相关的建表,查表以及存档等操作。-This procedure using Trie tree realize the English words auxiliary memory system, and complete the relevant built form, as well as the archive, such as look-up table operation
LC-trie
- lc-trie 路由查找算法, lc-trie 路由查找算法-lc-trie routing search algorithm, lc-trie Routing Lookup Algorithm
Trie
- Trie数据结构,一种字符串存储方式,可以提高字符串的查找效率-a data structure of Trie, which can be used for storing the strings and improve the searching efficiency for a given string
Trie
- poj3283的代码,是学习Trie的好材料~-poj3283 code is studying the well Trie Materials ~
trie
- This program implements a (zipped) tree search for information retrieval programs, first you can get a key words and then it will save them in its format. also with a simple change you can pass a file as input and find r
trie
- trie字典树 字典树C语言实现的算法。-trie dictionary tree C language implementation of the algorithm.
Trie
- trie树的一个实现 trie树是在字符串匹配中常用的一种高效数据结构-trie tree trie tree is a realization of the string matching used in an efficient data structure
Trie
- trie 树 什么是 trie 树 ? ◇ trie 树是一种用于快速检索的多叉树结构。 ◇ 和二叉查找树不同,在 trie 树中,每个结点上并非存 储一个元素。 ◇ trie 树把要查找的关键词看作一个字符序列。并根据 构成关键词字符的先后顺序构造用于检索的树结构。 ◇ 在 trie 树上进行检索类似于查阅英语词典。 一棵 m 度的 trie 树或者为空,或者由 m 棵 m 度的 trie 树构 成
trie
- A implementation of Trie