Tagged Questions
The prefix-tree tag has no wiki summary.
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?
...
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 ...
2
votes
3answers
191 views
Basic prefix tree implementation question
I've implemented a basic prefix tree or "trie". The trie consists of nodes like this:
// pseudo-code
struct node {
char c;
collection<node> childnodes;
};
Say I add the following ...
1
vote
2answers
283 views
Convert a prefix expression tree vector to a ORF/Karva notation expression tree vector
Ok, this is a bit of a tricky one.
I have a bunch of code that takes expression trees such that:
((a + b)/(c + d) + sqrt(e))
is stored in a vector (I'm using C++ but I just need the algorithm) in ...
1
vote
2answers
144 views
Creating and storing a prefix tree on iPhone before runtime
I'm currently making a word game for iOS that, when loading, reads in a text file of around 30000 words and loads them into a prefix tree for quick searching during gameplay. This works well, but the ...
1
vote
2answers
295 views
How to deallocate memory in prefix tree? (ANSI C)
I tried to deallocate memory in dict_free() function, but it doesn't work and I don't no why. Am I missing something? Can't figure out, what's wrong.
Edit:
If I call free() in dict_free() I expect to ...
0
votes
2answers
79 views
C++ FP-tree or Prefix tree
I have some sequences as these
(100) - (102) - (103) - (104,106) - (108)
(101) - (103)
(102) - (106)
there is some efficient implementation an prefix tree or fp-tree or similar in C + +?
0
votes
1answer
103 views
what the data structure for this?
i was given a set(no duplication then) of binary strings with arbitrary lenght and number, and need to find out if there is any string is the prefix of other string. for small set and string with ...