A tree-like data structure used to hold an associative array, also called a Prefix Tree.
0
votes
1answer
20 views
Working with Java Trie, fails to identify word endings. Fails somewhere in recursion
I am trying to create my own version of a Java Trie in order to have one, and to gain the knowledge it requires to make one, but this project has me perplexed. I have a very basic broken Trie here.
...
0
votes
2answers
37 views
trying to implement a trie data structure in java
I am trying to make a TrieNode class. every node has a letter, links(the other nodes it connects to), a boolean declaring if this node marks the end of a full word, and I am trying to add another ...
0
votes
0answers
37 views
C++ radix tree in memory mapped file
I need to construct a radix tree (called also patricia trie or trie) within a memory mapped file and I'm looking for any open source library, which already implements that.
As I know there is a GNU ...
-1
votes
1answer
76 views
What is a decimal search tree?
I was given the following assignment, which I don't fully understand:
Write a program to implement a “Decimal Search Tree”, a popular tool used for searching in Libraries, police stations, Traffic ...
1
vote
0answers
60 views
get all words exist in trie using recursion
I found a function which traverse all the trie and return a list contains all the words exist in my trie. My problem is I can't make this work for me, any help will appreciated.
class Node {
...
0
votes
3answers
42 views
Exploring a binary search tree
I figure a binary search tree is the simplest example, but really I would like to know how to explore a ternary search tree or some variety of tries. I don't have any experience with these, but I ...
0
votes
0answers
33 views
Showing all words available for T9 predictive text (java)
I've been working on a T9 predictive text project for college and I've managed to get it working up to the point that u insert a combination of numbers (as if your typing a word on a t9 keypad) and it ...
0
votes
2answers
77 views
How to get all possible words?
I have a method that finds all the possible words in a prefix tree. It takes in a node and finds all possible words for that node.
However, I need it to be able to take in combinations of nodes and ...
2
votes
1answer
60 views
How to print out found words from a trie in java?
I have a method here that searches and prints what i think is all letter combinations of a dictionary in trie form the node entered.
I want to specify each print out and and it to my search(string x) ...
1
vote
2answers
74 views
calculate the memory space allocated by a structure in C
I would like to know if there is a way to calculate the memory space before and after a certain function call or a program... something like the time stamp to calculate the execution time...
I'm ...
2
votes
1answer
86 views
Spaceleak in Haskell trie
I wrote a trie implementation in Haskell and got some performance issues. I profiled my code accordingly to http://book.realworldhaskell.org/read/profiling-and-optimization.html and could nail down ...
-1
votes
0answers
74 views
Compressed file is bigger than original Using LZ78 algorithm [closed]
I have been trying to build an algorithm of the lossless data compression
which is LZ78
I have already set a trie which is my dictionary.
Why is the size of the compressed file is doubled than the ...
0
votes
1answer
144 views
Trie Implementation in C++
I am trying to implement the trie as shown on the TopCoder page. I am modifying it a bit to store the phone numbers of the users. I am getting segmentation fault. Can some one please point out the ...
-1
votes
2answers
71 views
Could you explain the recipe of a spell checker program in Java? [closed]
I want to implement a Java program which compares the input string with the words in a dictionary text file and returns the suggestions if a word or string is wrong.
I want the explanation of the ...
-1
votes
0answers
37 views
trie match optimization with learning set [closed]
I need to implement an optimization algorithm for a machine learning application in a trie based distance match function - these are the existing optimization libraries that came up in an online ...
2
votes
3answers
134 views
Generic Trie Haskell implementation
I needed a generic Trie implementation in Haskell but I could not find any.
I was implemented my own functions (only keys here, I didn't need data on Trie) but I want to find a good Trie ...
0
votes
0answers
40 views
Implementing a trie over a Binary Searh tree
I am trying to build a trie using one of the data structure which is a BST(Binary Search Tree).
My question is how would the binary search tree look like?
I mean the normal BST would have the ...
1
vote
3answers
58 views
Java best way to perform String startsWith
I want to compare if a provided string starts with any of the strings in an array. The easiest solution being:
String b = ...;
boolean matched = false;
for (String a : array) {
if (b.startsWith(a))
...
0
votes
2answers
50 views
Using a trie data structure on word occurance
This question is language independent and is more about understanding how to implement the trie or whether tries would be appropriate for what my program is suppose to do.
Say I have a string of text ...
5
votes
1answer
114 views
How to print all words stored in a Tree , wherin trie has been implemented using Hashmap in Java?
I want to print or retrieve all the words stored in Trie Data Structure. This is because I want to compute Edit distance between a misspelled word and a word in Dictionary.
Therefore I was thinking ...
0
votes
4answers
69 views
Can you use an iterator on an array?
This isn't an easy question to write, there are a lot of angles to it. I'm trying to write a very basic Trie in Java to help myself understand the concept and its uses. I'm not entirely sure I'm doing ...
1
vote
2answers
124 views
C++ dictionary trie implementation
I am getting a segfault in my insert function on the line:
current->isWord = true;
Everything compiles fine with no warnings or errors (g++ -Wall -Wextra). My main function just calls the ...
1
vote
1answer
63 views
Making Pre-Compiled Code/ Data Structures
I am trying to make a word game in Flash/as3.
Here I am using Prefix tree (Trie) data structure to store all the valid English words and then iterate through them whenever the user makes a new word.
...
-1
votes
1answer
19 views
Should I use hash or trie for filename lookup [closed]
I have a list of 100,000 filenames like this '/media/data/projects/....../abcdef.dat',
and I need to be able to find all such filenames on short substring queries like 'proj' or 'cde'. What would you ...
0
votes
0answers
84 views
Edit distance between two sets of strings
Problem Definition:
Given two sets of strings X and Y we want to find the edit distance between each word in X with each word in Y.
I know Levenshtein distance algorithm using trie but this is only ...
1
vote
1answer
36 views
How to construct a DAWG from a trie?
i just construct a trie for a vocabulary, and then I found that there are many branches shared the same struct. i want to combine them together result to be a DAWG.
What algorithm would I use to ...
0
votes
2answers
74 views
Ternary tree vs trie with map as transition table for Aho-Corasick FSA
What is the difference between FSA using ternary tree and a trie with transition tables implemented as search trees (e.g. std::map)? It seems like both have O(log k) complexity for reading one symbol ...
0
votes
1answer
78 views
Trie for numbers
Is it good idea to use trie or DAWG for numbers instead of strings? I have many two numbers combinations and want to decrease required memory size.
I would like to be able to store all the numbers ...
0
votes
1answer
86 views
How to implement the remove function of a trie in python?
I've read the following implementation of the trie in python:
http://stackoverflow.com/a/11016430/2225221
and tried to make the remove fnction for it.
Basically, I had problems even with the start: ...
0
votes
1answer
97 views
Iterators over Tries in Java
I am currently trying to implement a trie data structure for integer tuples. And have implemented as follows:
import java.util.ArrayList;
public class TrieNode {
int num;
ArrayList<TrieNode> ...
2
votes
3answers
73 views
Sort an array of tuples by all elements
I would like to sort an array of tuples by all elements (like if they were in a trie). If the input is (1,2,5), (1,2,3), (1,1,4), (2,8,9), the corresponding output would be (1,1,4), (1,2,3), ...
0
votes
5answers
128 views
How do I remove an element from a Vector?
This is what I'm doing now:
private var accounts = Vector.empty[Account]
def removeAccount(account: Account)
{
accounts = accounts.filterNot(_ == account)
}
Is there a more readable ...
0
votes
1answer
60 views
Trie iterator, suffix ordering
I need to implement an iterator for a trie. Let's say I have
a
/\
b c
/\
d e
If the current iterator.state="abd", I would like to have iterator.next.state="abe", then "ac". At each ...
1
vote
1answer
59 views
Text search in NoSQL with mapreduce
I am working on an app that requires searching a large list of titles. Ideally I would like to use NoSQL but it seems that text search across the whole database is not as good as in SQL databases ...
2
votes
3answers
127 views
Shortest Path in a Trie
For a Data Structures project, I must find the shortest path between two words like "cat" and "dog but i'm only allowed to change one letter at a time. I'm trying to do it by implementing a trie, and ...
-6
votes
1answer
48 views
Unresolved compilation error
Here's my code for insertion of a node in a compressed suffix trie :
public class tree {
char a[] = new char[10];
a[0]='b';
a[1]='a';
a[2]='n';
a[3]='a';
a[4]='n';
...
0
votes
2answers
133 views
String match in sliding window
Lets say you have a file which has the following string
a a a b a a b a a b b a b
You don't have access to the file but a function FetchNextChar() that gives one character at a time.
and the ...
0
votes
1answer
82 views
concatenate string record of trie path [closed]
I'd like to concatenate a record of the path a struct takes through a trie - only recording when a non-matching path is used, here is my trie search function:
void ...
1
vote
6answers
146 views
Fast method to search for a string in a big text file with python
That's my current situation:
I have a 2.5MB text file with around 250k strings, sorted alphabetically
Each string is unique
I don't need to modify the entries in the text file: once the text file is ...
0
votes
0answers
34 views
Is there a way to iterate over Bio.trie in a memory-friendly way?
I would like to use a Bio.trie as an index for sequences to count how many time each of them occurs in a dataset. The index is created like this:
seqs = trie()
for seq in dataset:
if ...
3
votes
1answer
111 views
Clojure Zipper of nested Maps repressing a TRIE
How can I create a Clojure zipper for a TRIE, represented by nested maps, were the keys are the letters.?
Something like this:
{\b {\a {\n {\a {\n {\a {'$ '$}}}}}} \a {\n {\a {'$ '$}}}}
...
0
votes
1answer
253 views
What's the correct approach to solve SPOJ www.spoj.com/problems/PRHYME/?
I have been trying to solve this problem SPOJ www.spoj.com/problems/PRHYME/? for several days, but have had no success.
Here is the problem in brief:
Given is a wordlist L, and a word w. Your task ...
0
votes
2answers
143 views
Compressed trie implementation?
I am going through a Udacity course and in one of the lectures (https://www.youtube.com/watch?v=gPQ-g8xkIAQ&feature=player_embedded), the professor gives the function high_common_bits which (taken ...
0
votes
1answer
101 views
Trie Implementation With Map
i was working solving a problem today. But i got stucked. I know how a trie works but the problem is that i know how to implement it with static arrays and classes. Today surfing on the web i read ...
-2
votes
1answer
129 views
Printing all string stored in Trie tree [closed]
I am trying to implement a trie datastructure in Java. Can anyone guide me through the task of printing all the strings stored in a trie data structure?
0
votes
1answer
89 views
(SML) Insert in a trie from reference form to normal?
I created this destructive insertion to tries:
(* ins: char list * (char trie) ref list -> (char trie) ref list *)
fun ins ([], t) = t@[ref Empty]
| ins (x::xs, []) = [ref (Node (x, ins (xs, ...
0
votes
0answers
99 views
Scrabble: Building a Directed Acyclic Word Graph from a set of words
How do I build a Directed Acyclic Word Graph(DAWG) from a set of 277,651 words sorted alphabetically? Currently, I'm using a trie. With 590,000 nodes, it consumes 25 Megabytes of memory.
Any help ...
1
vote
2answers
44 views
How to get parent in a k-ary level order succint trie?
I'm implementing a level order succint trie and I wan't to be able for a given node to jump back to his parent.
I tried several combination of rank/level but I can't wrap my head around this one...
...
1
vote
0answers
87 views
How to design the server side data structure of autocomplete function?
I have millions of Search Engine Queries looks like this:
Stack Overflow
Java Video Tutorials
Cars
C++ vs Java
Now i want to implement a auto-complete function could fit these demands:
1. Type in ...
1
vote
0answers
45 views
Morphological Analyzer WordFrame Example-Based Training
I'm working on a project regarding a Morphological Analyzer in Tagalog. It uses a revised WordFrame model for Tagalog, using Trie data structure to store rules and an example-based training set in the ...