Longest common substring

1

In computer science, a longest common substring of two or more strings is a longest string that is a substring of all of them. There may be more than one longest common substring. Applications include data deduplication and plagiarism detection.

Examples

The picture shows two strings where the problem has multiple solutions. Although the substring occurrences always overlap, it is impossible to obtain a longer common substring by "uniting" them. The strings "ABABC", "BABCA" and "ABCBA" have only one longest common substring, viz. "ABC" of length 3. Other common substrings are "A", "AB", "B", "BA", "BC" and "C". ABABC ||| BABCA ||| ABCBA

Problem definition

Given two strings, S of length m and T of length n, find a longest string which is substring of both S and T. A generalization is the k-common substring problem. Given the set of strings, where |S_i|=n_i and. Find for each, a longest string which occurs as substring of at least k strings.

Algorithms

One can find the lengths and starting positions of the longest common substrings of S and T in \Theta(n+m) time with the help of a generalized suffix tree. A faster algorithm can be achieved in the word RAM model of computation if the size \sigma of the input alphabet is in. In particular, this algorithm runs in time using space. Solving the problem by dynamic programming costs \Theta(nm). The solutions to the generalized problem take space and time with dynamic programming and take time with a generalized suffix tree.

Suffix tree

The longest common substrings of a set of strings can be found by building a generalized suffix tree for the strings, and then finding the deepest internal nodes which have leaf nodes from all the strings in the subtree below it. The figure on the right is the suffix tree for the strings "ABAB", "BABA" and "ABBA", padded with unique string terminators, to become "ABAB$0", "BABA$1" and "ABBA$2". The nodes representing "A", "B", "AB" and "BA" all have descendant leaves from all of the strings, numbered 0, 1 and 2. Building the suffix tree takes \Theta(N) time (if the size of the alphabet is constant). If the tree is traversed from the bottom up with a bit vector telling which strings are seen below each node, the k-common substring problem can be solved in \Theta(NK) time. If the suffix tree is prepared for constant time lowest common ancestor retrieval, it can be solved in \Theta(N) time.

Dynamic programming

The following pseudocode finds the set of longest common substrings between two strings with dynamic programming: function LongestCommonSubstring(S[1..r], T[1..n]) L := array(1..r, 1..n) z := 0 ret := {} for i := 1..r for j := 1..n if S[i] = T[j] if i = 1 or j = 1 L[i, j] := 1 else L[i, j] := L[i − 1, j − 1] + 1 if L[i, j] > z z := L[i, j] ret := {S[i − z + 1..i]} else if L[i, j] = z ret := ret ∪ {S[i − z + 1..i]} else L[i, j] := 0 return ret This algorithm runs in O(n r) time. The array stores the length of the longest common suffix of the prefixes and which end at position and , respectively. The variable is used to hold the length of the longest common substring found so far. The set is used to hold the set of strings which are of length. The set can be saved efficiently by just storing the index , which is the last character of the longest common substring (of size z) instead of. Thus all the longest common substrings would be, for each i in,. The following tricks can be used to reduce the memory usage of an implementation:

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

Edit article