Tagged Questions

A tree-like data structure used to hold an associative array, also called a Prefix Tree.

learn more… | top users | synonyms

24
votes
4answers
7k views

Where do I find a standard Trie based map implementation in Java?

I have a Java program that stores a lot of mappings from Strings to various objects. Right now, my options are either to rely on hashing (via HashMap) or on binary searches (via TreeMap). I am ...
19
votes
4answers
4k views

How Do I Choose Between a Hash Table and a Trie (Prefix Tree)?

So if I have to choose between a hash table or a prefix tree what are the discriminating factors that would lead me to choose one over the other. From my own naive point of view it seems as though ...
18
votes
8answers
4k views

What is the most common use of the “trie” data structure?

I want to learn more about "trie" data structures. I've read about them on Wikipedia but I'm still confused. What is the most common use? Auto-complete in the address bar of a web browser... or? ...
13
votes
9answers
9k views

Trie implementation

Is there any speed- and cache-efficient implementations of trie in C/C++? I know what a trie is, but I don't want reinvent the wheel, implementing it myself.
12
votes
4answers
2k views

Need memory efficient way to store tons of strings (was: HAT-Trie implementation in java)

I am working with a large set (5-20 million) of String keys (average length 10 chars) which I need to store in an in memory data structure that supports the following operation in constant time or ...
11
votes
7answers
2k views

Implementing a simple Trie for efficient Levenshtein Distance calculation - Java

UPDATE 3 Done. Below is the code that finally passed all of my tests. Again, this is modeled after Murilo Vasconcelo's modified version of Steve Hanov's algorithm. I will try to make the Levenshtein ...
11
votes
4answers
651 views

What is a good algorithm to traverse a Trie to check for spelling suggestions?

Assuming that a general Trie of dictionary words is built, what would be the best method to check for the 4 cases of spelling mistakes - substitution, deletion, transposition and insertion during ...
11
votes
3answers
827 views

Space-efficient in-memory structure for sorted text supporting prefix searches

I have a problem: I need space-efficient lookup of file-system data based of file path prefix. Prefix searching of sorted text, in other words. Use a trie, you say, and I thought the same thing. ...
10
votes
5answers
297 views

Optimal data structure for a special dictionary

Which data structure is best in terms of computational complexity to implement a dictionary of (key,val) items, which must support only following commands: Insert(key) - appends an item (key,val) ...
9
votes
4answers
823 views

Clojure: How to generate a 'trie'?

Given the following... (def inTree '((1 2) (1 2 3) (1 2 4 5 9) (1 2 4 10 15) (1 2 4 20 25))) How would you transform it to this trie? (def outTrie '(1 (2 () (3 ()) ...
8
votes
1answer
437 views

STLish lower_bound function for Radix/Patricia Trie

Lately I've been studying Patricia tries, and working with a really good C++ implementation which can be used as an STL Sorted Associative Container. Patricia tries differ from normal binary trees ...
8
votes
5answers
2k views

Trie vs. suffix tree vs. suffix array

Which structure provides the best performance results; trie (prefix tree), suffix tree or suffix array? Are there other similar structures? What are good Java implementations of these structures? ...
8
votes
1answer
2k views

Implementing a Patricia Trie for use as a dictionary

I'm attempting to implement a Patricia Trie with the methods addWord(), isWord(), and isPrefix() as a means to store a large dictionary of words for quick retrieval (including prefix search). I've ...
8
votes
5answers
6k views

Trie (Prefix Tree) in Python

I don't know if this is the place to ask about algorithms. But let's see if I get any answers ... :) If anything is unclear I'm very happy to clarify things. I just implemented a Trie in python. ...
7
votes
2answers
119 views

Which node data structure to use for a trie

I am using trie for the first time.I wanted to know which is the best data structure to use for a trie while deciding which is the next branch that one is supposed to traverse. I was looking among an ...
7
votes
3answers
184 views

Data Structure for representing patterns in strings

I'm looking for a good data structure to represent strings of the form: Domain:Key1=Value1,Key2=Value2... Each "Domain" can contain the following pattern characters - *, ? (* - 0 or more ...
7
votes
3answers
380 views

Are There Any Good C++ Suffix Trie Libraries? [closed]

Does anyone know of a really rock solid C++ library for suffix tries? Other than the one in Mummer? Ideally, I'd like: Some concept of concurrency. Good caching behavior. Permissive license. Support ...
7
votes
3answers
652 views

Are Tries still a good idea on modern architectures?

One of my favourite data structures in college was the Trie. It's a great data structure for holding a large set of strings if the prefixes are shared. Lookups are also nice, since they are done at ...
6
votes
5answers
257 views

Trie saves space, but how?

I am confused as to how the Trie implementation saves space & stores data in most compact form! If you look at the tree below. When you store a character at any node, you also need to store a ...
6
votes
4answers
250 views

What would be a sensible way to implement a Trie in .NET?

I get the concept behind a trie. But I get a little confused when it comes to implementation. The most obvious way I could think to structure a Trie type would be to have a Trie maintain an internal ...
5
votes
2answers
70 views

Search for cyclic strings

I am looking for the most efficient way to store binary strings in a data structure (insert function) and then when getting a string I want to check if some cyclic string of the given string is in my ...
5
votes
1answer
269 views

Why aren't C++ maps implemented as tries?

Tries are very fast data structures. Looking up a word takes O(sizeofword) time, while std::maps are self-balacing trees. Why aren't the standard C++ map templates implemented with tries. Is there any ...
5
votes
2answers
239 views

A trie implementation in Delphi?

Anyone knows a ready-to-use trie [sic] implementation in Delphi? An optimized trie would be even better. Thanks in advance!
5
votes
3answers
165 views

Is there any way I can speed up this VBA algorithm?

I am looking to implement a VBA trie-building algorithm that is able to process a substantial English lexicon (~50,000 words) in a relatively short amount of time (less than 15-20 seconds). Since I am ...
5
votes
1answer
81 views

How do the tries work that are used in the mmo object format's symbol tables?

I try to understand, how the mmo object file format works, which is used for Don Knuth's educational MMIX architecture. I have not bought MMIXware, so I have to guess most of the details from the ...
5
votes
1answer
408 views

Scrabble word finder: building a trie, storing a trie, using a trie?

What I’m trying to do: Build a mobile web application where the user can get help finding words to play when playing scrabble Users get word suggestions by typing in any amount of letters and 0 or ...
5
votes
6answers
257 views

Space efficient collection for strings with common prefixes - Java implementation

I need to store millions of string with common prefixes (they don't correspond to file system paths) in a Set like structure in memory, and query the Collection to see if a path exists. e.g. /path ...
5
votes
3answers
466 views

Persisting a trie to a file - C

I have a trie which I am using to do some string processing. I have a simple compiler which generates trie from some data. Once generated, my trie won't change at run time. I am looking for an ...
5
votes
3answers
3k views

Trie implementation

I am attempting to implement a very simple Trie in Java that supports 3 operations. I'd like it to have an insert method, a has method (ie is a certain word in the trie), and a toString method to ...
4
votes
1answer
102 views

Prefix matching using trie in objective c

I am using objective-c implementation of trie for prefix matching but its taking huge memory (for 200k file paths its taking 600MB). can any one suggest me any alternative for prefix matching in ...
4
votes
1answer
76 views

Scala deconstruct then reconstruct an Iterable

I'm currently working on implementing my own Trie in Scala (for learning/hobby purposes), and I'm trying to keep it generic (so that it can store anything Iterable, not just Strings). My class ...
4
votes
4answers
552 views

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 ...
4
votes
2answers
220 views

Confusion in finding the order of the data structure

Today I attended a written test conducted by a company. The overall test was focussed on data structures. I got a problem which I thought I solved. But I had a tough time in calculating the Big O ...
4
votes
6answers
650 views

Erlang: What is most-wrong with this trie implementation?

Over the holidays, my family loves to play Boggle. Problem is, I'm terrible at Boggle. So I did what any good programmer would do: wrote a program to play for me. At the core of the algorithm is a ...
4
votes
9answers
396 views

Optimizing word count

(This is rather hypothetical in nature as of right now, so I don't have too many details to offer.) I have a flat file of random (English) words, one on each line. I need to write an efficient ...
4
votes
3answers
741 views

How do you store a trie in a relational database?

I have a prefix trie. What is the recommended schema for representing this structure in a relational database? I need substring matching to remain efficient.
4
votes
4answers
1k views

Stuck on a Iterator Implementation of a Trie

I have to implement a homemade Trie and I'm stuck on the Iterator part. I can't seem to figure out the increment method for the trie. I hope someone can help me clear things out. Here's the code for ...
3
votes
2answers
134 views

PYTHON- Given a starting word, which sequence of letters will allow you to maximize the number of valid words that can be spelled

Edit: New question. Given that I suspect this question is more difficult than I originally thought-- potentially NP-complex, I have a different question: what is useful algorithm that can get close ...
3
votes
3answers
197 views

​Breaking a string into individual words(Python)

I have a large list of domain names (around six thousand), and I would like to see which words trend the highest for a rough overview of our portfolio. The problem I have is the list is formatted as ...
3
votes
2answers
220 views

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 was otherwise given as ...
3
votes
2answers
428 views

Autocomplete using a trie

I am working on an autocompletion script and was thinking about using a trie. My problem is I want everything that matches to be returned. So for example I type in the letter r I want all entries ...
3
votes
3answers
526 views

How do I create a fixed-length, mutable array of Python objects in Cython?

I need to have an array of python objects to be used in creating a trie datastructure. I need a structure that will be fixed-length like a tuple and mutable like a list. I don't want to use a list ...
3
votes
1answer
176 views

Typing Scala collections

I wanted to learn the new Scala collections framework by making a very general prefix tree. Not only must the keys and the values be parameters, but the type of the maps used in each node must be ...
3
votes
4answers
354 views

what the author of nedtries means by “in-place”?

I. Just implemented a kind of bitwise trie (based on nedtries), but my code does lot Of memory allocation (for each node). Contrary to my implemetation, nedtries are claimed to be fast , among othet ...
3
votes
1answer
274 views

IPv6 lookup data structure

A patricia trie is the well-know, recommended data structure for storing IPv4 allocations/assignments and performing lookup. Is this true for IPv6 adddresses too? Just a deeper/taller trie to ...
3
votes
2answers
365 views

Disk-based trie?

I'm trying to build a Trie but on a mobile phone which has very limited memory capacity. I figured that it is probably best that the whole structure be stored on disk, and only loaded as necessary ...
3
votes
1answer
721 views

HAT-trie in ANSI C implementation?

I am looking for ANSI C HAT-trie implementation released under some free license. I have not found one. Can you point me to some standalone implementation or a program that uses HAT-tries to get at ...
3
votes
3answers
267 views

Asymptotically Fast Associative Array with Low Memory Requirements

Ok, tries have been around for a while. A typical implementation should give you O(m) lookup, insert and delete operations independently of the size n of the data set, where m is the message length. ...
3
votes
2answers
924 views

Trie implementation - Inserting elements into a trie

I am developing a Trie data-structure where each node represents a word. So words st, stack, stackoverflow and overflow will be arranged as root --st ---stack -----stackoverflow --overflow My Trie ...
2
votes
2answers
107 views

Find anagram of input on set of strings..?

Given a set of strings (large set), and an input string, you need to find all the anagrams of the input string efficiently. What data structure will you use. And using that, how will you find the ...

1 2 3