0
votes
0answers
14 views
how to implement trie data structure using c for the identification of sets?
here we should write a program to implement the identification of sets(object sets containing strings not in an alphabetical order) which makes basically use of tries.
0
votes
2answers
68 views
File backed Trie (or Prefix Tree) implementation
I have to store lot of strings in c++ map to keep unique strings and when ever duplicate string occurs I just need to increment the counter (pair.second). I've used c++ map and it …
3
votes
9answers
97 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 writ …
2
votes
3answers
94 views
Which data structure to add/look up/keep count of strings?
I'm trying to figure out what data structure to quickly support the following operations:
Add a string (if it's not there, add it, if it is there, increment a counter for the wor …
1
vote
3answers
103 views
[c++ / pointers]: having objects A and B (B has vector member, which stores pointer to A), knowing A is it possible to retrieve pointer to B?
Hello,
While trying to learn c++, I tried to implement class representing very basic trie. I came up with the following:
class Trie {
public:
char data;
vector<Trie* & …
4
votes
3answers
175 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 ()
…
7
votes
3answers
233 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 t …
1
vote
6answers
687 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.
11
votes
7answers
779 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 we …
1
vote
2answers
195 views
What’s the best way to implement web service for ajax autocomplete
I'm implementing a "Google Suggest" like autocomplete feature for tag searching using jQuery's autocomplete.
I need to provide a web service to jQuery giving it a list of suggest …
3
votes
5answers
706 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 …
1
vote
1answer
104 views
How to traverse a trie longitudinally?
Hello,
i have a Trie and several functions modifiing it.
typedef struct node *pnode;
typedef struct node
{
int element;
pnode next;//same level, other element
pnode …
0
votes
4answers
307 views
Trie Implementation Question
I'm implementing a trie for predictive text entry in VB.NET - basically autocompletion as far as the use of the trie is concerned. I've made my trie a recursive data structure bas …
5
votes
3answers
301 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 …
4
votes
4answers
602 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 …
