Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing some work with Ukkonen's algorithm for building suffix trees, but I'm not understanding some parts of the author's explanation for it's linear-time complexity.

I have learned the algorithm and have coded it, but the paper which I'm using as the main source of information (linked bellow) is kinda confusing at some parts so it's not really clear for me why the algorithm is linear.

Any help? Thanks.

Link to Ukkonen's paper: http://www.cs.helsinki.fi/u/ukkonen/SuffixT1withFigs.pdf

share|improve this question
4  
To anyone who finds this question: A similar one came up here and we are creating a description of the algorithm as a Stackoverflow answer here. – jogojapan Mar 3 '12 at 1:18

2 Answers

up vote 9 down vote accepted

Find a copy of Gusfield's string algorithms textbook. It's got the best exposition of the suffix tree construction I've seen. The linearity is a surprising consequence of a number of optimizations of the high-level algorithm.

share|improve this answer
1  
Is there an animated version of this ukkonen algo? Sorry i couldn't understand the constant nature of "update" function. I tried gusfield, ukkonen's paper and google too :D – Seeker Sep 7 '10 at 3:55
1  
I would love to watch a animation for building a generalized suffix tree in linear time. Generally text based explanation wont fit in my mind..:) – Abhi Jan 26 '12 at 0:07
1  
Gusfields chapter on suffix trees has this annoying feature, that he uses different strings to illustrate the different steps - so you loose the big picture. – maasha Jun 26 '12 at 7:52

Very interesting algorithm, I'll definitely study it.

Check out these 2 links I found for some insights,

share|improve this answer
nice links! very useful – julio.alegria Nov 19 '11 at 13:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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