Finding repetitive substrings
Having some arbitrary string such as
hello hello hello I am I am I am your string string string string of strings
Can I somehow find repetitive sub-strings? In this case it would be
'hello', 'I am' and 'string'.
I have been wondering about this for some time but I still can not find
any real solution. I also have read some articles concerning this topic
and hit up on suffix trees but can this help me even though I need to find
every repetition e.g. with repetition count higher than two?
No comments:
Post a Comment