trienet:用于子字符串搜索自动完成和Intelli sense的Trie数据结构的.NET实现。 包括:patricia trie后缀trie和使用Ukk
用法 nuget install TrieNet using Gma . DataStructures . StringSearch ; ... var trie = new UkkonenTrie < int>( 3 ); // var trie = new SuffixTrie(3); trie . Add ( " hello " , 1 ); trie . Add ( " world " , 2 ); trie . Add ( " hell " , 3 ); var result = trie . Retrieve ( " hel " ); 更新 添加了Ukkonen
文件列表
trienet-master.zip
(预估有个71文件)
trienet-master
TrieNet
_PatriciaTrie
PatriciaTrieNode.cs
5KB
PatriciaTrie.cs
1KB
MatchKind.cs
314B
SplitResult.cs
1KB
PatriciaSuffixTrie.cs
2KB
ZipResult.cs
3KB
StringPartition.cs
5KB
暂无评论