English

Linear Time Online Algorithms for Constructing Linear-size Suffix Trie

Data Structures and Algorithms 2023-12-06 v3

Abstract

The suffix trees are fundamental data structures for various kinds of string processing. The suffix tree of a text string TT of length nn has O(n)O(n) nodes and edges, and the string label of each edge is encoded by a pair of positions in TT. Thus, even after the tree is built, the input string TT needs to be kept stored and random access to TT is still needed. The \emph{linear-size suffix tries} (\emph{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 an input text string TT of length nn occupies O(n)O(n) total space, and supports pattern matching and other tasks with the same efficiency as the suffix tree without the need to store the input text string TT. Crochemore et al. proposed an \emph{offline} algorithm which transforms the suffix tree of TT into the LST of TT in O(nlogσ)O(n \log \sigma) time and O(n)O(n) space, where σ\sigma is the alphabet size. In this paper, we present two types of \emph{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. Both algorithms construct the LST incrementally when a new symbol is read, and do not access the previously read symbols. Both of the right-to-left construction algorithm and the left-to-right construction algorithm work in O(nlogσ)O(n \log \sigma) time and O(n)O(n) space. The main feature of our algorithms is that the input text string does not need to be stored.

Keywords

Cite

@article{arxiv.2301.04295,
  title  = {Linear Time Online Algorithms for Constructing Linear-size Suffix Trie},
  author = {Diptarama Hendrian and Takuya Takagi and Shunsuke Inenaga and Keisuke Goto and Mitsuru Funakoshi},
  journal= {arXiv preprint arXiv:2301.04295},
  year   = {2023}
}

Comments

27 pages, 14 figures. arXiv admin note: text overlap with arXiv:1901.10045

R2 v1 2026-06-28T08:09:02.221Z