HOME

TheInfoList



OR:

In
information theory Information theory is the mathematical study of the quantification (science), quantification, Data storage, storage, and telecommunications, communication of information. The field was established and formalized by Claude Shannon in the 1940s, ...
,
linguistics Linguistics is the scientific study of language. The areas of linguistic analysis are syntax (rules governing the structure of sentences), semantics (meaning), Morphology (linguistics), morphology (structure of words), phonetics (speech sounds ...
, and
computer science Computer science is the study of computation, information, and automation. Computer science spans Theoretical computer science, theoretical disciplines (such as algorithms, theory of computation, and information theory) to Applied science, ...
, the Levenshtein distance is a
string metric In mathematics and computer science, a string metric (also known as a string similarity metric or string distance function) is a metric (mathematics), metric that measures distance ("inverse similarity") between two string (computer science), tex ...
for measuring the difference between two sequences. The Levenshtein distance between two words is the minimum number of single-character edits (insertions, deletions or substitutions) required to change one word into the other. It is named after Soviet mathematician
Vladimir Levenshtein Vladimir Iosifovich Levenshtein ( rus, Влади́мир Ио́сифович Левенште́йн, p=vlɐˈdʲimʲɪr ɨˈosʲɪfəvʲɪtɕ lʲɪvʲɪnˈʂtʲejn, a=Ru-Vladimir Iosifovich Levenstein.oga; 20 May 1935 – 6 September 2017) was ...
, who defined the metric in 1965. Levenshtein distance may also be referred to as ''edit distance'', although that term may also denote a larger family of distance metrics known collectively as
edit distance In computational linguistics and computer science, edit distance is a string metric, i.e. a way of quantifying how dissimilar two String (computing), strings (e.g., words) are to one another, that is measured by counting the minimum number of opera ...
. It is closely related to pairwise string alignments.


Definition

The Levenshtein distance between two strings a, b (of length , a, and , b, respectively) is given by \operatorname(a, b) where : \operatorname(a, b) = \begin , a, & \text , b, = 0, \\ , b, & \text , a, = 0, \\ \operatorname\big(\operatorname(a),\operatorname(b)\big) & \text \operatorname(a)= \operatorname(b), \\ 1 + \min \begin \operatorname\big(\operatorname(a), b\big) \\ \operatorname\big(a, \operatorname(b)\big) \\ \operatorname\big(\operatorname(a), \operatorname(b)\big) \\ \end & \text \end where the \operatorname of some string x is a string of all but the first character of x (i.e. \operatorname(x_0x_1 \dots x_n)=x_1x_2 \dots x_n), and \operatorname(x) is the first character of x (i.e. \operatorname(x_0x_1 \dots x_n)=x_0). Either the notation x /math> or x_n is used to refer to the nth character of the string x, counting from 0, thus \operatorname(x)=x_0=x /math>. The first element in the minimum corresponds to deletion (from a to b), the second to insertion and the third to replacement. This definition corresponds directly to the naive recursive implementation.


Example

For example, the Levenshtein distance between "kitten" and "sitting" is 3, since the following 3 edits change one into the other, and there is no way to do it with fewer than 3 edits: # kitten → sitten (substitution of "s" for "k"), # sitten → sittin (substitution of "i" for "e"), # sittin → sitting (insertion of "g" at the end). A simple example of a deletion can be seen with "uninformed" and "uniformed" which have a distance of 1: # uninformed → uniformed (deletion of "n").


Upper and lower bounds

The Levenshtein distance has several simple upper and lower bounds. These include: * It is at least the absolute value of the difference of the sizes of the two strings. * It is at most the length of the longer string. * It is zero if and only if the strings are equal. * If the strings have the same size, the
Hamming distance In information theory, the Hamming distance between two String (computer science), strings or vectors of equal length is the number of positions at which the corresponding symbols are different. In other words, it measures the minimum number ...
is an upper bound on the Levenshtein distance. The Hamming distance is the number of positions at which the corresponding symbols in the two strings are different. * The Levenshtein distance between two strings is no greater than the sum of their Levenshtein distances from a third string (
triangle inequality In mathematics, the triangle inequality states that for any triangle, the sum of the lengths of any two sides must be greater than or equal to the length of the remaining side. This statement permits the inclusion of Degeneracy (mathematics)#T ...
). An example where the Levenshtein distance between two strings of the same length is strictly less than the Hamming distance is given by the pair "flaw" and "lawn". Here the Levenshtein distance equals 2 (delete "f" from the front; insert "n" at the end). The
Hamming distance In information theory, the Hamming distance between two String (computer science), strings or vectors of equal length is the number of positions at which the corresponding symbols are different. In other words, it measures the minimum number ...
is 4.


Applications

In
approximate string matching In computer science, approximate string matching (often colloquially referred to as fuzzy string searching) is the technique of finding strings that match a pattern approximately (rather than exactly). The problem of approximate string matching ...
, the objective is to find matches for short strings in many longer texts, in situations where a small number of differences is to be expected. The short strings could come from a dictionary, for instance. Here, one of the strings is typically short, while the other is arbitrarily long. This has a wide range of applications, for instance,
spell checker In software, a spell checker (or spelling checker or spell check) is a software feature that checks for misspellings in a text. Spell-checking features are often embedded in software or services, such as a word processor, email client, electronic ...
s, correction systems for
optical character recognition Optical character recognition or optical character reader (OCR) is the electronics, electronic or machine, mechanical conversion of images of typed, handwritten or printed text into machine-encoded text, whether from a scanned document, a photo ...
, and software to assist natural-language translation based on
translation memory A translation memory (TM) is a database that stores "segments", which can be sentences, paragraphs or sentence-like units (headings, titles or elements in a list) that have previously been translated, in order to aid human translators. The trans ...
. The Levenshtein distance can also be computed between two longer strings, but the cost to compute it, which is roughly proportional to the product of the two string lengths, makes this impractical. Thus, when used to aid in fuzzy string searching in applications such as record linkage, the compared strings are usually short to help improve speed of comparisons. In linguistics, the Levenshtein distance is used as a metric to quantify the linguistic distance, or how different two languages are from one another.. It is related to
mutual intelligibility In linguistics, mutual intelligibility is a relationship between different but related language varieties in which speakers of the different varieties can readily understand each other without prior familiarity or special effort. Mutual intelli ...
: the higher the linguistic distance, the lower the mutual intelligibility, and the lower the linguistic distance, the higher the mutual intelligibility.


Relationship with other edit distance metrics

There are other popular measures of
edit distance In computational linguistics and computer science, edit distance is a string metric, i.e. a way of quantifying how dissimilar two String (computing), strings (e.g., words) are to one another, that is measured by counting the minimum number of opera ...
, which are calculated using a different set of allowable edit operations. For instance, * the Damerau–Levenshtein distance allows the transposition of two adjacent characters alongside insertion, deletion, substitution; * the longest common subsequence (LCS) distance allows only insertion and deletion, not substitution; * the
Hamming distance In information theory, the Hamming distance between two String (computer science), strings or vectors of equal length is the number of positions at which the corresponding symbols are different. In other words, it measures the minimum number ...
allows only substitution, hence, it only applies to strings of the same length. * the Jaro distance allows only transposition.
Edit distance In computational linguistics and computer science, edit distance is a string metric, i.e. a way of quantifying how dissimilar two String (computing), strings (e.g., words) are to one another, that is measured by counting the minimum number of opera ...
is usually defined as a parameterizable metric calculated with a specific set of allowed edit operations, and each operation is assigned a cost (possibly infinite). This is further generalized by DNA
sequence alignment In bioinformatics, a sequence alignment is a way of arranging the sequences of DNA, RNA, or protein to identify regions of similarity that may be a consequence of functional, structural biology, structural, or evolutionary relationships between ...
algorithms such as the Smith–Waterman algorithm, which make an operation's cost depend on where it is applied.


Computation


Recursive

This is a straightforward, but inefficient, recursive
Haskell Haskell () is a general-purpose, statically typed, purely functional programming language with type inference and lazy evaluation. Designed for teaching, research, and industrial applications, Haskell pioneered several programming language ...
implementation of a lDistance function that takes two strings, ''s'' and ''t'', together with their lengths, and returns the Levenshtein distance between them: lDistance :: Eq a => -> -> Int lDistance [] t = length t -- If s is empty, the distance is the number of characters in t lDistance s [] = length s -- If t is empty, the distance is the number of characters in s lDistance (a : s') (b : t') , a

b = lDistance s' t' -- If the first characters are the same, they can be ignored , otherwise = 1 + minimum -- Otherwise try all three possible actions and select the best one [ lDistance (a : s') t' -- Character is inserted (b inserted) , lDistance s' (b : t') -- Character is deleted (a deleted) , lDistance s' t' -- Character is replaced (a replaced with b) ]
This implementation is very inefficient because it recomputes the Levenshtein distance of the same substrings many times. A more efficient method would never repeat the same distance calculation. For example, the Levenshtein distance of all possible suffixes might be stored in an array M, where M j] is the distance between the last i characters of string s and the last j characters of string t. The table is easy to construct one row at a time starting with row 0. When the entire table has been built, the desired distance is in the table in the last row and column, representing the distance between all of the characters in s and all the characters in t.


Iterative with full matrix

This section uses 1-based strings rather than 0-based strings. If ''m'' is a matrix, m ,j/math> is the ''i''th row and the ''j''th column of the matrix, with the first row having index 0 and the first column having index 0. Computing the Levenshtein distance is based on the observation that if we reserve a
matrix Matrix (: matrices or matrixes) or MATRIX may refer to: Science and mathematics * Matrix (mathematics), a rectangular array of numbers, symbols or expressions * Matrix (logic), part of a formula in prenex normal form * Matrix (biology), the m ...
to hold the Levenshtein distances between all
prefixes A prefix is an affix which is placed before the stem of a word. Particularly in the study of languages, a prefix is also called a preformative, because it alters the form of the word to which it is affixed. Prefixes, like other affixes, can b ...
of the first string and all prefixes of the second, then we can compute the values in the matrix in a dynamic programming fashion, and thus find the distance between the two full strings as the last value computed. This algorithm, an example of bottom-up dynamic programming, is discussed, with variants, in the 1974 article ''The String-to-string correction problem'' by Robert A. Wagner and Michael J. Fischer. This is a straightforward
pseudocode In computer science, pseudocode is a description of the steps in an algorithm using a mix of conventions of programming languages (like assignment operator, conditional operator, loop) with informal, usually self-explanatory, notation of actio ...
implementation for a function LevenshteinDistance that takes two strings, ''s'' of length ''m'', and ''t'' of length ''n'', and returns the Levenshtein distance between them: function LevenshteinDistance(char s ..m char t ..n: // for all i and j, d ,jwill hold the Levenshtein distance between // the first i characters of s and the first j characters of t declare int d ..m, 0..n set each element in d to zero // source prefixes can be transformed into empty string by // dropping all characters for i from 1 to m: d , 0:= i // target prefixes can be reached from empty source prefix // by inserting every character for j from 1 to n: d
, j The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
:= j for j from 1 to n: for i from 1 to m: if s = t substitutionCost := 0 else: substitutionCost := 1 d
, j The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
:= minimum(d -1, j+ 1, // deletion d
, j-1 The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
+ 1, // insertion d -1, j-1+ substitutionCost) // substitution return d
, n The comma is a punctuation mark that appears in several variants in different languages. Some typefaces render it as a small line, slightly curved or straight, but inclined from the vertical; others give it the appearance of a miniature fille ...
Two examples of the resulting matrix (hovering over a tagged number reveals the operation performed to get that number): : The invariant maintained throughout the algorithm is that we can transform the initial segment into using a minimum of operations. At the end, the bottom-right element of the array contains the answer.


Iterative with two matrix rows

It turns out that only two rows of the table the previous row and the current row being calculated are needed for the construction, if one does not want to reconstruct the edited input strings. The Levenshtein distance may be calculated iteratively using the following algorithm: function LevenshteinDistance(char s ..m-1 char t ..n-1: // create two work vectors of integer distances declare int v0 + 1 declare int v1 + 1 // initialize v0 (the previous row of distances) // this row is A i]: edit distance from an empty s to t; // that distance is the number of characters to append to s to make t. for i from 0 to n: v0 = i for i from 0 to m - 1: // calculate v1 (current row distances) from the previous row v0 // first element of v1 is A + 10] // edit distance is delete (i + 1) chars from s to match empty t v1 = i + 1 // use formula to fill in the rest of the row for j from 0 to n - 1: // calculating costs for A + 1j + 1] deletionCost := v0 + 1+ 1 insertionCost := v1 + 1 if s = t substitutionCost := v0 else: substitutionCost := v0 + 1 v1 + 1:= minimum(deletionCost, insertionCost, substitutionCost) // copy v1 (current row) to v0 (previous row) for next iteration // since data in v1 is always invalidated, a swap without copy could be more efficient swap v0 with v1 // after the last swap, the results of v1 are now in v0 return v0
Hirschberg's algorithm In computer science, Hirschberg's algorithm, named after its inventor, Dan Hirschberg, is a dynamic programming algorithm that finds the optimal sequence alignment between two strings. Optimality is measured with the Levenshtein distance, define ...
combines this method with divide and conquer. It can compute the optimal edit sequence, and not just the edit distance, in the same asymptotic time and space bounds.


Automata

Levenshtein automata efficiently determine whether a string has an edit distance lower than a given constant from a given string.


Approximation

The Levenshtein distance between two strings of length can be approximated to within a factor : (\log n)^, where is a free parameter to be tuned, in time .


Computational complexity

It has been shown that the Levenshtein distance of two strings of length cannot be computed in time for any ε greater than zero unless the strong exponential time hypothesis is false.


See also

* agrep * Damerau–Levenshtein distance *
diff In computing, the utility diff is a data comparison tool that computes and displays the differences between the contents of files. Unlike edit distance notions used for other purposes, diff is line-oriented rather than character-oriented, but i ...
* Dynamic time warping *
Euclidean distance In mathematics, the Euclidean distance between two points in Euclidean space is the length of the line segment between them. It can be calculated from the Cartesian coordinates of the points using the Pythagorean theorem, and therefore is o ...
* Homology of sequences in genetics *
Hamming distance In information theory, the Hamming distance between two String (computer science), strings or vectors of equal length is the number of positions at which the corresponding symbols are different. In other words, it measures the minimum number ...
*
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 which compares a pair of files each r ...
* Jaccard index * Jaro–Winkler distance * Locality-sensitive hashing *
Longest common subsequence problem A longest common subsequence (LCS) is the longest subsequence common to all sequences in a set of sequences (often just two sequences). It differs from the longest common substring: unlike substrings, subsequences are not required to occupy conse ...
*
Lucene Apache Lucene is a free and open-source search engine software library, originally written in Java by Doug Cutting. It is supported by the Apache Software Foundation and is released under the Apache Software License. Lucene is widely used as a ...
(an open source search engine that implements edit distance) *
Manhattan distance Taxicab geometry or Manhattan geometry is geometry where the familiar Euclidean distance is ignored, and the distance between two point (geometry), points is instead defined to be the sum of the absolute differences of their respective Cartesian ...
*
Metric space In mathematics, a metric space is a Set (mathematics), set together with a notion of ''distance'' between its Element (mathematics), elements, usually called point (geometry), points. The distance is measured by a function (mathematics), functi ...
* MinHash * Optimal matching algorithm *
Numerical taxonomy Numerical taxonomy is a classification system in biological systematics which deals with the grouping by numerical methods of taxonomic units based on their character states. It aims to create a taxonomy using numeric algorithms like cluster an ...
* Sørensen similarity index


References


External links

*
Rosetta Code implementations of Levenshtein distance
{{DEFAULTSORT:Levenshtein Distance String metrics Dynamic programming Articles with example pseudocode Quantitative linguistics Computational linguistics