Online Algorithms for Constructing Linear-size Suffix Trie

01/29/2019
by   Diptarama Hendrian, et al.
0

The suffix trees are fundamental data structures for various kinds of string processing. The suffix tree of a string T of length n has O(n) nodes and edges, and the string label of each edge is encoded by a pair of positions in T. Thus, even after the tree is built, the input text T needs to be kept stored and random access to T is still needed. The linear-size suffix tries (LSTs), proposed by Crochemore et al. [Linear-size suffix tries, TCS 638:171-178, 2016], are a `stand-alone' alternative to the suffix trees. Namely, the LST of a string T of length n occupies O(n) total space, and supports pattern matching and other tasks in the same efficiency as the suffix tree without the need to store the input text T. Crochemore et al. proposed an offline algorithm which transforms the suffix tree of T into the LST of T in O(n σ) time and O(n) space, where σ is the alphabet size. In this paper, we present two types of online algorithms which `directly' construct the LST, from right to left, and from left to right, without constructing the suffix tree as an intermediate structure. The right-to-left construction algorithm works in O(n σ) time and O(n) space and the left-to-right construction algorithm works in O(n (σ + n / n)) time and O(n) space.

READ FULL TEXT

Please sign up or login with your details

Forgot password? Click here to reset