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
用户评论