Jump to content

Suffix tree

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 178.73.49.6 (talk) at 18:27, 31 March 2011 (See also). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Suffix tree for the string BANANA. Each substring is terminated with special character $. The six paths from the root to a leaf (shown as boxes) correspond to the six suffixes A$, NA$, ANA$, NANA$, ANANA$ and BANANA$. The numbers in the boxes give the start position of the corresponding suffix. Suffix links drawn dashed.

In computer science, a suffix tree (also called PAT tree or, in an earlier form, position tree) is a data structure that presents the suffixes of a given string in a way that allows for a particularly fast implementation of many important string operations.

The suffix tree for a string is a tree whose edges are labeled with strings, such that each suffix of corresponds to exactly one path from the tree's root to a leaf. It is thus a radix tree (more specifically, a Patricia tree) for the suffixes of .

Constructing such a tree for the string takes time and space linear in the length of . Once constructed, several operations can be performed quickly, for instance locating a substring in , locating a substring if a certain number of mistakes are allowed, locating matches for a regular expression pattern etc. Suffix trees also provided one of the first linear-time solutions for the longest common substring problem. These speedups come at a cost: storing a string's suffix tree typically requires significantly more space than storing the string itself.

History

The concept was first introduced as a position tree by Weiner in 1973[1], which Donald Knuth subsequently characterized as "Algorithm of the Year 1973". The construction was greatly simplified by McCreight in 1976 [2] , and also by Ukkonen in 1995[3][4]. Ukkonen provided the first linear-time online-construction of suffix trees, now known as Ukkonen's algorithm. These algorithms are all linear-time for constant-size alphabet, and have worst-case running time of in general.

In 1997, Farach[5] gave the first suffix tree construction algorithm that is optimal for all alphabets. In particular, this is the first linear-time algorithm for strings drawn from an alphabet of integers in a polynomial range. This latter algorithm has become the basis for new algorithms for constructing both suffix trees and suffix arrays, for example, in external memory, compressed, succinct, etc.

Definition

The suffix tree for the string of length is defined as a tree such that ([6] page 90):

  • the paths from the root to the leaves have a one-to-one relationship with the suffixes of ,
  • edges spell non-empty strings,
  • and all internal nodes (except perhaps the root) have at least two children.

Since such a tree does not exist for all strings, is padded with a terminal symbol not seen in the string (usually denoted $). This ensures that no suffix is a prefix of another, and that there will be leaf nodes, one for each of the suffixes of . Since all internal non-root nodes are branching, there can be at most n −  1 such nodes, and n + (n − 1) + 1 = 2n nodes in total (n leaves, n − 1 internal nodes, 1 root).

Suffix links are a key feature for older linear-time construction algorithms, although most newer algorithms, which are based on Farach's algorithm, dispense with suffix links. In a complete suffix tree, all internal non-root nodes have a suffix link to another internal node. If the path from the root to a node spells the string , where is a single character and is a string (possibly empty), it has a suffix link to the internal node representing . See for example the suffix link from the node for ANA to the node for NA in the figure above. Suffix links are also used in some algorithms running on the tree.

Functionality

A suffix tree for a string of length can be built in time, if the letters come from an alphabet of integers in a polynomial range (in particular, this is true for constant-sized alphabets)[5]. For larger alphabets, the running time is dominated by first sorting the letters to bring them into a range of size ; in general, this takes time. The costs below are given under the assumption that the alphabet is constant.

Assume that a suffix tree has been built for the string of length , or that a generalised suffix tree has been built for the set of strings of total length . You can:

  • Search for strings:
    • Check if a string of length is a substring in time ([6] page 92).
    • Find the first occurrence of the patterns of total length as substrings in time.
    • Find all occurrences of the patterns of total length as substrings in time ([6] page 123).
    • Search for a regular expression P in time expected sublinear in ([7]).
    • Find for each suffix of a pattern , the length of the longest match between a prefix of and a substring in in time ([6] page 132). This is termed the matching statistics for .
  • Find properties of the strings:
    • Find the longest common substrings of the string and in time ([6] page 125).
    • Find all maximal pairs, maximal repeats or supermaximal repeats in time ([6] page 144).
    • Find the Lempel–Ziv decomposition in time ([6] page 166).
    • Find the longest repeated substrings in time.
    • Find the most frequently occurring substrings of a minimum length in time.
    • Find the shortest strings from that do not occur in , in time, if there are such strings.
    • Find the shortest substrings occurring only once in time.
    • Find, for each , the shortest substrings of not occurring elsewhere in in time.

The suffix tree can be prepared for constant time lowest common ancestor retrieval between nodes in time ([6] chapter 8). You can then also:

  • Find the longest common prefix between the suffixes and in ([6] page 196).
  • Search for a pattern P of length m with at most k mismatches in time, where z is the number of hits ([6] page 200).
  • Find all maximal palindromes in ([6] page 198), or time if gaps of length are allowed, or if mismatches are allowed ([6] page 201).
  • Find all tandem repeats in , and k-mismatch tandem repeats in ([6] page 204).
  • Find the longest substrings common to at least strings in for in time ([6] page 205).

Applications

Suffix trees can be used to solve a large number of string problems that occur in text-editing, free-text search, computational biology and other application areas.[8] Primary applications include:[8]

  • String search, in O(m) complexity, where m is the length of the sub-string (but with initial O(n) time required to build the suffix tree for the string)
  • Finding the longest repeated substring
  • Finding the longest common substring
  • Finding the longest palindrome in a string

Suffix trees are often used in bioinformatics applications, searching for patterns in DNA or protein sequences (which can be viewed as long strings of characters). The ability to search efficiently with mismatches might be considered their greatest strength. Suffix trees are also used in data compression; they can be used to find repeated data, and can be used for the sorting stage of the Burrows–Wheeler transform. Variants of the LZW compression schemes use suffix trees (LZSS). A suffix tree is also used in suffix tree clustering, a data clustering algorithm used in some search engines (first introduced in [9]).

Implementation

If each node and edge can be represented in space, the entire tree can be represented in space. The total length of all the strings on all of the edges in the tree is , but each edge can be stored as the position and length of a substring of S, giving a total space usage of computer words. The worst-case space usage of a suffix tree is seen with a fibonacci word, giving the full nodes.

An important choice when making a suffix tree implementation is the parent-child relationships between nodes. The most common is using linked lists called sibling lists. Each node has a pointer to its first child, and to the next node in the child list it is a part of. Hash maps, sorted/unsorted arrays (with array doubling), and balanced search trees may also be used, giving different running time properties. We are interested in:

  • The cost of finding the child on a given character.
  • The cost of inserting a child.
  • The cost of enlisting all children of a node (divided by the number of children in the table below).

Let be the size of the alphabet. Then you have the following costs:

Lookup Insertion Traversal
Sibling lists / unsorted arrays
Hash maps
Balanced search tree
Sorted arrays
Hash maps + sibling lists

Note that the insertion cost is amortised, and that the costs for hashing are given perfect hashing.

The large amount of information in each edge and node makes the suffix tree very expensive, consuming about ten to twenty times the memory size of the source text in good implementations. The suffix array reduces this requirement to a factor of four, and researchers have continued to find smaller indexing structures.

External construction

Suffix trees quickly outgrow the main memory on standard machines for sequence collections in the order of gigabytes. As such, their construction calls for external memory approaches.

There are theoretical results for constructing suffix trees in external memory. The algorithm by Farach et al. [10] is theoretically optimal, with an I/O complexity equal to that of sorting. However, as discussed for example in [11], the overall intricacy of this algorithm has prevented, so far, its practical implementation.

On the other hand, there have been practical works for constructing disk-based suffix trees which scale to (few) GB/hours. The state of the art methods are TDD [12], TRELLIS [13] , DiGeST [14], and B2ST [15].

TDD and TRELLIS scale up to the entire human genome – approximately 3GB – resulting in a disk-based suffix tree of a size in the tens of gigabytes [12],[13]. However, these methods cannot handle efficiently collections of sequences exceeding 3GB [14]. DiGeST performs significantly better and is able to handle collections of sequences in the order of 6GB in about 6 hours [14]. The source code and documentation for the latter is available from [16] . All these methods can efficiently build suffix trees for the case when the tree does not fit in main memory, but the input does. The most recent method, B2ST [15], scales to handle inputs that do not fit in main memory.

See also

References

  1. ^ P. Weiner (1973). "Linear pattern matching algorithm". 14th Annual IEEE Symposium on Switching and Automata Theory. pp. 1–11. doi:10.1109/SWAT.1973.13. {{cite conference}}: Unknown parameter |booktitle= ignored (|book-title= suggested) (help)
  2. ^ Edward M. McCreight (1976). "A Space-Economical Suffix Tree Construction Algorithm". Journal of the ACM. 23 (2): 262–272. doi:10.1145/321941.321946.
  3. ^ E. Ukkonen (1995). "On-line construction of suffix trees" (PDF). Algorithmica. 14 (3): 249–260. doi:10.1007/BF01206331.
  4. ^ R. Giegerich and S. Kurtz (1997). "From Ukkonen to McCreight and Weiner: A Unifying View of Linear-Time Suffix Tree Construction" (PDF). Algorithmica. 19 (3): 331–353. doi:10.1007/PL00009177.
  5. ^ a b M. Farach (1997). "Optimal Suffix Tree Construction with Large Alphabets". FOCS: 137–143. {{cite journal}}: External link in |usr= (help); Unknown parameter |usr= ignored (help)
  6. ^ a b c d e f g h i j k l m n Gusfield, Dan (1999) [1997]. Algorithms on Strings, Trees and Sequences: Computer Science and Computational Biology. USA: Cambridge University Press. ISBN 0-521-58519-8.
  7. ^ Ricardo A. Baeza-Yates and Gaston H. Gonnet (1996). "Fast text searching for regular expressions or automaton searching on tries". Journal of the ACM. 43 (6). ACM Press: 915–936. doi:10.1145/235809.235810. {{cite journal}}: Unknown parameter |address= ignored (|location= suggested) (help)
  8. ^ a b Allison, L. "Suffix Trees". Retrieved 2008-10-14.
  9. ^ Oren Zamir and Oren Etzioni (1998). "Web document clustering: a feasibility demonstration". SIGIR '98: Proceedings of the 21st annual international ACM SIGIR conference on Research and development in information retrieval. ACM. pp. 46–54. {{cite conference}}: Unknown parameter |address= ignored (|location= suggested) (help); Unknown parameter |booktitle= ignored (|book-title= suggested) (help)
  10. ^ Martin Farach-Colton, Paolo Ferragina, S. Muthukrishnan (2000). "On the sorting-complexity of suffix tree construction". J. Acm 47(6). 47 (6): 987–1011. doi:10.1145/355541.355547.{{cite journal}}: CS1 maint: multiple names: authors list (link)
  11. ^ Smyth, William (2003). Computing Patterns in Strings. Addison-Wesley.
  12. ^ a b Sandeep Tata, Richard A. Hankins, and Jignesh M. Patel (2003). "Practical Suffix Tree Construction". VLDB '03: Proceedings of the 30th International Conference on Very Large Data Bases. Morgan Kaufmann. pp. 36–47. {{cite conference}}: Unknown parameter |booktitle= ignored (|book-title= suggested) (help); line feed character in |booktitle= at position 62 (help)CS1 maint: multiple names: authors list (link)
  13. ^ a b Benjarath Phoophakdee and Mohammed J. Zaki (2007). "Genome-scale disk-based suffix tree indexing". SIGMOD '07: Proceedings of the ACM SIGMOD International Conference on Management of Data. ACM. pp. 833–844. {{cite conference}}: Unknown parameter |address= ignored (|location= suggested) (help); Unknown parameter |booktitle= ignored (|book-title= suggested) (help); line feed character in |booktitle= at position 56 (help)
  14. ^ a b c Marina Barsky, Ulrike Stege, Alex Thomo, and Chris Upton (2008). "A new method for indexing genomes using on-disk suffix trees". CIKM '08: Proceedings of the 17th ACM Conference on Information and Knowledge Management. ACM. pp. 649–658. {{cite conference}}: Unknown parameter |address= ignored (|location= suggested) (help); Unknown parameter |booktitle= ignored (|book-title= suggested) (help); line feed character in |booktitle= at position 52 (help)CS1 maint: multiple names: authors list (link)
  15. ^ a b Marina Barsky, Ulrike Stege, Alex Thomo, and Chris Upton (2009). "Suffix trees for very large genomic sequences". CIKM '09: Proceedings of the 18th ACM Conference on Information and Knowledge Management. ACM. {{cite conference}}: Unknown parameter |address= ignored (|location= suggested) (help); Unknown parameter |booktitle= ignored (|book-title= suggested) (help); line feed character in |booktitle= at position 52 (help)CS1 maint: multiple names: authors list (link)
  16. ^ "The disk-based suffix tree for pattern search in sequenced genomes". Retrieved 2009-10-15.