Skip to content
 
 

Latest commit

 

History

63 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fork Information

This is a Fork of TrieNet intended to properly support .NET Standard 2.1+ (only).

Improvements made to base repository

Improvements have made to tries such as return a list instead of an IEnumerable, In editing contexts this avoids copying & large memory allocations.

Linq usage has been minimized.

Most of the code purposed to building the UkkonenTrie has been edited to make use of Span, considerably speeding up the process and reducing the amount of string copies.

Due to the lack of an IList.Empty, make sure to check that the list is not null.

Basic performance Benchmark compared to the main repository for UkkonenTrie provided below, the following have been realized on a 20k sentence trie, also, the original TrieNet.Core NuGet package is built as Debug, lacking optimizations.

Basic string search (3 chars) - 3x Speed improvement
|          Method |            Mean |           Error |          StdDev |      Gen 0 | Gen 1 | Gen 2 | Allocated |
|-----------------|----------------:|----------------:|----------------:|-----------:| -----:|------:| ---------:| 
|   OldShortParse |        475.8 ns |         5.99 ns |         5.60 ns |          - |     - |     - |         - |
|   NewShortParse |        150.8 ns |         0.32 ns |         0.30 ns |          - |     - |     - |         - |

Basic string search (25 chars) - 3x Speed improvement
|          Method |            Mean |           Error |          StdDev |      Gen 0 | Gen 1 | Gen 2 | Allocated |
|-----------------|----------------:|----------------:|----------------:|-----------:| -----:|------:| ---------:| 
|    OldLongParse |        474.2 ns |         8.83 ns |         8.26 ns |          - |     - |     - |         - |
|    NewLongParse |        149.8 ns |         0.37 ns |         0.35 ns |          - |     - |     - |         - |

Building Ukkonen Trie (3 chars) - ~5x Speed Improvement, x8 build memory allocation
|          Method |            Mean |           Error |          StdDev |      Gen 0 | Gen 1 | Gen 2 | Allocated |
|-----------------|----------------:|----------------:|----------------:|-----------:| -----:|------:| ---------:| 
|    OldBuildTrie | 44,202,494.7 ns |   857,548.81 ns |   953,163.24 ns |  6750.0000 |     - |     - | 1776176 B |
|    NewBuildTrie |  9,203,427.7 ns |   179,211.84 ns |   191,754.66 ns |   937.5000 |     - |     - |  248096 B |

TrieNet - The library provides .NET Data Structures for Prefix String Search and Substring (Infix) Search to Implement Auto-completion and Intelli-sense.

usage

  nuget install TrieNet
using Gma.DataStructures.StringSearch;
	
...

var trie = new UkkonenTrie<int>(3);
//var trie = new SuffixTrie<int>(3);

trie.Add("hello", 1);
trie.Add("world", 2);
trie.Add("hell", 3);

var result = trie.Retrieve("hel");

updates

Added UkkonenTrie<T> which is a trie implementation using Ukkonen's algorithm. Finally I managed to port (largely rewritten) a java implementation of Generalized Suffix Tree using Ukkonen's algorithm by Alessandro Bahgat (THANKS!).

I have not made all measurements yet, but it occurs to have significatly imroved build-up and look-up times.

trienet

you liked it, you find it useful

so I migrated it from dying https://trienet.codeplex.com/

  nuget install TrieNet

and created a NuGet package.

motivation

If you are implementing a modern user friendly peace of software you will very probably need something like this:

Or this:

I have seen manyquestions about an efficient way of implementing a (prefix or infix) search over a key value pairs where keys are strings (for instance see:http://stackoverflow.com/questions/10472881/search-liststring-for-string-startswith).

So it depends:

  • If your data source is aSQL or some other indexed database holdig your data it makes sense to utilize it’s search capabilities and issue a query to find maching records.

  • If you have a small ammount of data, a linear scan will be probably the most efficient.

IEnumerable> keyValuePairs;
...
var result = keyValuePairs.Select(pair => pair.Key.Contains(searchString));
  • If you are seraching in a large set of key value records you may need a special data structure to perform your seach efficiently.

trie

There is a family of data structures reffered as Trie. In this post I want to focus on a c# implementations and usage of Trie data structures. If you want to find out more about the theory behind the data structure itself Google will be probably your best friend. In fact most of popular books on data structures and algorithms describe tries (see.: Advanced Data Structures by Peter Brass)

implementation

The only working .NET implementation I found so far was this one:http://geekyisawesome.blogspot.de/2010/07/c-trie.html

Having some concerns about interface usability, implementation details and performance I have decided to implement it from scratch.

My small library contains a bunch of trie data structures all having the same interface:

public interface ITrie
{
  IEnumerable Retrieve(string query);
  void Add(string key, TValue value);
}
Class Description
Trie the simple trie, allows only prefix search, like .Where(s => s.StartsWith(searchString))
SuffixTrie allows also infix search, like .Where(s => s.Contains(searchString))
PatriciaTrie compressed trie, more compact, a bit more efficient during look-up, but a quite slower durig build-up.
SuffixPatriciaTrie the same as PatriciaTrie, also enabling infix search.
ParallelTrie very primitively implemented parallel data structure which allows adding data and retriving results from different threads simultaneusly.

preformance

Important: all diagrams are given in logarithmic scale on x-axis.

To answer the question about when to use trie vs. linear search beter I’v experimeted with real data. As you can see below using a trie data structure may already be reasonable after 10.000 records if you are expecting many queries on the same data set.

Look-up times on patricia are slightly better, advantages of patricia bacame more noticable if you work with strings having many repeating parts, like quelified names of classes in sourcecode files, namespaces, variable names etc. So if you are indexing source code or something similar it makes sense to use patricia …

… even if the build-up time of patricia is higher compared to the normal trie.

demo app

The app demonstrates indexing of large text files and look-up inside them. I have experimented with huge texts containing millions of words. Indexing took usually only several seconds and the look-up delay was still unnoticable for the user.

About

.NET Implementations of Trie Data Structures for Substring Search, Auto-completion and Intelli-sense. Includes: patricia trie, suffix trie and a trie implementation using Ukkonen's algorithm.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages