Hunt–Szymanski algorithm


In computer science, the Hunt–Szymanski algorithm, also known as Hunt–McIlroy algorithm, is a solution to the longest common subsequence problem. It was one of the first non-heuristic algorithms used in diff. To this day, variations of this algorithm are found in incremental version control systems, wiki engines, and molecular phylogenetics research software.
The worst case complexity for this algorithm is, but in practice is rather expected.

History

The algorithm was proposed by Harold S. Stone as a generalization of a special case solved by Thomas G. Szymanski. James W. Hunt refined the idea, implemented the first version of the candidate-listing algorithm used by diff and embedded it into an older framework of Douglas McIlroy.
The description of the algorithm appeared as a technical report by Hunt and McIlroy in 1976. The following year, a variant of the algorithm was finally published in a joint paper by Hunt and Szymanski.

Algorithm

The Hunt–Szymanski algorithm is a modification to a basic solution for the longest common subsequence problem which has complexity. The solution is modified so that there are lower time and space requirements for the algorithm when it is working with typical inputs.

Basic longest common subsequence solution

Algorithm

Let Ai be the ith line of the first file.
Let Bj be the jth line of the second file.
Let Pij be the length of the longest common subsequence for the first i lines of the first file and the first j lines of the second file.

Example

Consider the files A and B.
A contains three lines:
B contains three lines:
The steps the above algorithm would perform to determine the length of the longest common subsequence for both files are shown in the diagram. The algorithm correctly reports that the longest common subsequence of the two files is two lines long.

Complexity

The above algorithm has worst-case time and space complexities of , where m is the number of lines in file A and n is the number of lines in file B. The Hunt–Szymanski algorithm modifies this algorithm to have a worst case time complexity of and space complexity of, though it regularly beats the worst-case with typical inputs.

Essential matches

''k''-candidates

The Hunt–Szymanski algorithm only considers what the authors call essential matches, or k-candidates. k-candidates are pairs of indices such that:
The second point implies two properties of k-candidates:
To create the longest common subsequence from a collection of k-candidates, a grid with each file's contents on each axis is created. The k-candidates are marked on the grid. A common subsequence can be created by joining marked coordinates of the grid such that any increase in i is accompanied by an increase in j.
This is illustrated in the adjacent diagram.
Black dots represent candidates that would have to be considered by the simple algorithm and the black lines are connections that create common subsequences of length 3.
Red dots represent k-candidates that are considered by the Hunt–Szymanski algorithm and the red line is the connection that creates a common subsequence of length 3.