vote up 1 vote down star
1

I've implemented a basic search for a research project. I'm trying to make the search more efficient by building a suffix tree. I'm interested in a C# implementation of the Ukkonen algorith. I don't want to waste time rolling my own if such implementation exists.

flag

50% accept rate
Can you elaborate on your question at all? – Matt Hanson Oct 11 '08 at 0:09
I am trying to implement a search within a research project. I've implemented the reverse index and incremental population of the index. Next I was looking to make the search even more efficient but did not want to roll my own ST implementation if one exists. – Goran Oct 11 '08 at 7:09

2 Answers

vote up 3 vote down check

Hard question. Here's the closest to match I could find: http://www.codeproject.com/KB/recipes/ahocorasick.aspx, which is an implementation of the Aho-Corasick string matching algorithm. Now, the algorithm uses a suffix-tree-like structure per: http://en.wikipedia.org/wiki/Aho-Corasick_algorithm

Now, if you want a prefix tree, this article claims to have an implementation for you: http://www.codeproject.com/KB/recipes/prefixtree.aspx

<HUMOR> Now that I did your homework, how about you mow my lawn. (Reference: http://flyingmoose.org/tolksarc/homework.htm) </HUMOR>

Edit: I found a C# suffix tree implementation that was a port of a C++ one posted on a blog: http://code.google.com/p/csharsuffixtree/source/browse/#svn/trunk/suffixtree

link|flag
I'm looking for the suffix tree. – Goran Oct 11 '08 at 7:14
Consider your lawn mowed :) – Goran Sep 6 at 14:31
Cool :-) Next Thursday works best :-) – torial Sep 6 at 16:54
vote up 0 vote down

Mate, I am struggling to implement Suffix Tree in c# for my homework. I cant find adequate resources on the i. Am hoping you can help me out with this? I have a submission deadline in 2 days..

Many thanks C

link|flag
I've put this feature on hold for a while so I have no new information for you. Neither does the community it seems. – Goran Nov 4 '08 at 12:14
1  
Check out my answer, I just modified it for a c#, and please mow my lawn... – torial May 8 at 17:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.