Info
Version: | 2.6.0 |
Author(s): | Kirill Polishchuk |
Last Update: | Sunday, January 19, 2025 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/kpol/trie |
NuGet Url: | https://www.nuget.org/packages/KTrie |
Install
Install-Package KTrie
dotnet add package KTrie
paket add KTrie
KTrie Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
prefix tree) is an ordered tree data structure that is used to store an associative array where the keys are usually strings. All the descendants of a node have a common prefix of the string associated with that node, and the root is associated with the empty string.