I encountered a problem which requires a data structure that will hold a string S and allow me to:
- Check if word W is a subword of S in O(|W|) time
- Find longest suffix of S that is also a prefix of given word U in O(|U|) time
- Append string K at the end of S in O(|K|) time
I figured out that suffix trees constructed by Ukkonen algorithm are what I'm searching for. Algorithm is described as "On-line construction of suffix trees", and I have a problem with "online" part: after insertion of each character algorithm constructs an implicit suffix tree, which can be converted to explicit in final step. But what if I want to use implicit tree for searching before that step? "online" suggests that it's possible after inserting any prefix of analyzed string, but I can't find any example of even simpliest algorithm that operates on implicit tree.
My question is: How do I search for a string in implicit suffix tree?
EDIT: I accepted a very good answer that solves my problem, but in the meantime I managed to figure out a simplier solution to 2: It suffices to search for U in suffix of S of length |U| using KMP algorithm, and last number of matched characters will be string overlap.