trie
Storing, Loading, and Updating a Trie in ASP.NET MVC 3
I have a trie-based word detection algorithm for a custom dictionary. Note that regular expressions are too brittle with this dictionary as entries may contain spaces, periods, etc.[详细]
2023-03-10 06:39 分类:问答Are There Any Good C++ Suffix Trie Libraries? [closed]
As it currently stands, this question is not a good f开发者_开发问答it for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely so[详细]
2023-03-08 02:02 分类:问答Help with Trie implementation
I have been trying to implement the basic functions of inserting characters into a trie data structure in C. I have been trying to figure out what I am doing wrong, but for the last day or so I\'ve be[详细]
2023-03-07 03:44 分类:问答Traversing a trie to get all words
I have written Perl code to actually create a Trie datastructure given a set of words in an array. Now I have problems traversing and printing the words.[详细]
2023-03-06 21:29 分类:问答O(1) algorithm to determine if node is descendant of another node in a multiway tree?
Imagine the following tree: A / \\ BC / \\\\ DEF I\'m looking for a way to query if for example F is a descendant of A (note: F doesn\'t need to be a direct descendant of A), which, in this partic[详细]
2023-03-06 01:50 分类:问答Designing a System that would detect typos and suggestions
This was asked in an interview. I think the answer can be done by constructing a trie of all valid words and then suggestions can be made based on a possible valid path which wa开发者_开发知识库s oth[详细]
2023-03-03 14:56 分类:问答search in tries in java
hi i 开发者_StackOverflow中文版have a project that i need to implement a dictionary by tries ... but now i can\'t implement search method .... my code is here[详细]
2023-02-28 01:33 分类:问答Why are hash maps better than trie maps?
By trie map I mean an associative array, where the payloads are stored in a trie instead of a hash table.[详细]
2023-02-23 15:06 分类:问答Space efficient collection for strings with common prefixes - Java implementation
I need to store millions of string with common prefixes (they don\'t c开发者_开发百科orrespond to file system paths) in a Set like structure in memory, and query the Collection to see if a path exists[详细]
2023-02-22 20:26 分类:问答Longest Prefix Matches for URLs
I need information about any standard python package which can be used for \"longest prefix match\" on URLs. I have gone through the two standard packages http://packages.python.org/PyTrie/#pytrie.Str[详细]
2023-02-19 14:27 分类:问答