I am looking for trie built-in implementation in .Net framework. Is there something similar to Trie in .Net data structures?
Asked
Active
Viewed 1,211 times
5
-
What do you need to actually do? What do you need the trie for? – AKX Oct 20 '19 at 16:04
-
To make an efficient search implementation. I need to count stored strings which StartsWith specific string. – Deivydas Voroneckis Oct 20 '19 at 16:06
-
https://github.com/gmamaladze/trienet – David Brabant Oct 20 '19 at 16:38
-
also this may be of help http://www.glennslayden.com/code/c-sharp/trie – user1984 Oct 20 '19 at 16:43