1. 首页
  2. 数据库
  3. 其它
  4. trienet:用于子字符串搜索自动完成和Intelli sense的Trie数据结构的.NET实现。 包括:patricia trie后缀trie和使用Ukk

trienet:用于子字符串搜索自动完成和Intelli sense的Trie数据结构的.NET实现。 包括:patricia trie后缀trie和使用Ukk

上传者: 2021-03-25 12:08:37上传 ZIP文件 1.56MB 热度 7次
用法 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
用户评论