DEV Community

Cover image for Levenshtein Distance (Part 1: What is it?)
James Turner
James Turner

Posted on • Updated on • Originally published at turnerj.com

Levenshtein Distance (Part 1: What is it?)

The Levenshtein Distance is a deceptively simple algorithm - by looping over two strings, it can provide the "distance" (the number of differences) between the two. These differences are calculated in terms of "inserts", "deletions" and "substitutions".

The "distance" is effectively how similar two strings are. A distance of 0 would mean the strings are equal (no differences). A distance can be as high as there are as many characters in the longest string - this would mean there is absolutely nothing "similar" between these strings.

An application of the Levenshtein Distance algorithm is spell checking - knowing how similar two words are allows it to provide suggestions on what you may have intended to type.

Calculating the Levenshtein Distance

Take the words "Saturday" and "Sunday". What do we know about these words?

  • Saturday is 8 characters long and Sunday is 6.
  • They both start with "S" and end with "day".
  • Relative to the beginning of the string, the shared "u" is in a different position.
  • This just leaves "a", "t" and "r" from Saturday and "n" from Sunday as the only other differences.

Calculating the Levenshtein Distance of these two strings is effectively like building a matrix of values which represent the various inserts, deletions and substitutions required.

Let's build a matrix of this ourselves. We're going to start with the top row and left most column filled with numbers from 0 to each of the string's lengths.

S a t u r d a y
0 1 2 3 4 5 6 7 8
S 1 *
u 2
n 3
d 4
a 5
y 6

Starting from the position of where the asterisks is, we will look at the cell above (the deletion cost), the cell to the left (the insertion cost) and the cell diagonally top-left (the substitution cost).

The operations to fill our cell are as follows:

  • Get the minimum of the insert cost (1) and deletion cost (1), adding 1 to the result (MIN(1,1) + 1 = 2)
  • Get the substitution cost (0), adding 1 to it if the letter on this column ("S") and row ("S") are different (0 + 0 = 0)
  • Take the minimum of those numbers (MIN(2,0) = 0) and put that in our cell
S a t u r d a y
0 1 2 3 4 5 6 7 8
S 1 0
u 2
n 3
d 4
a 5
y 6

Rinse and repeat for the next cell in the row:

  • Get the minimum of the insert cost (0) and deletion cost (2), adding 1 to the result (MIN(0,2) + 1 = 1)
  • Get the substitution cost (1), adding 1 to it if the letter on this column ("a") and row ("S") are different (1 + 1 = 2)
  • Take the minimum of those numbers (MIN(1,2) = 1) and put that in our cell
S a t u r d a y
0 1 2 3 4 5 6 7 8
S 1 0 1
u 2
n 3
d 4
a 5
y 6

This keeps going for the whole row:

S a t u r d a y
0 1 2 3 4 5 6 7 8
S 1 0 1 2 3 4 5 6 7
u 2
n 3
d 4
a 5
y 6

And eventually the whole table:

S a t u r d a y
0 1 2 3 4 5 6 7 8
S 1 0 1 2 3 4 5 6 7
u 2 1 1 2 2 3 4 5 6
n 3 2 2 2 3 3 4 5 6
d 4 3 3 3 3 4 3 4 5
a 5 4 3 4 4 4 4 3 4
y 6 5 4 4 5 5 5 4 3

The actual Levenshtein Distance can be found in the bottom-right cell (3). Amazing right?

"Deceptively Simple"

I said early this algorithm is deceptively simple - I say this because of its computational complexity. This has a "Big-O" notation of O(n*m) where n is the length of one string and m is the length of the other. Memory-wise, building that matrix above is effectively (n+1)*(m+1) cells.

For the example above, there are 48 character comparisons with 96 checks for minimum value. Representing that table in memory ((6+1)*(8+1) cells by 4 bytes a cell, assuming 32-bit numbers) would account for 252 bytes!

Yes, I'm sure you're rolling your eyes that I'm squawking at 252 bytes. The problem is when you want to compare bigger strings. How about comparing two 1000 character strings? You'd be looking at... 4 megabytes.

That might not sound like a lot for a single lookup but now imagine doing that dozens or hundreds of times in a language that utilises garbage collection - the allocations would be huge!

When I first learnt about Levenshtein Distance I wanted to use it on web pages, to see how different two web pages are. Web pages can be quite large when counting every character in the HTML (this very page on DEV - at the time of writing - is north of 77K characters) or even just every text node (6K+ characters on this page at time of writing). Punching that into the same calculations above would be ~34 megabytes for 6K characters or a whopping 5 gigabytes for 77K characters!

Now what if we could reduce the number of cells we need from (n+1)*(m+1) to (MIN(n,m)+1)*2 or even just MIN(n,m)? In Part 2, I'll talk about the strategies of making this algorithm faster and more memory efficient.

Further Reading

Top comments (3)

Collapse
 
xanderyzwich profile image
Corey McCarty

I will be disappointed if your first efficiency fix isn't reduction of the matrix to current row and row above. None of the rows above these two matter at any given time. Great post, thanks! I now really want to play with this using long strings with whole words added in the middle.

Collapse
 
turnerj profile image
James Turner

I don't want to spoil anything but... yep, that is the first major memory optimization.

With your specific example though, I think you will like one or two of the other performance improvements more. 🙂

Collapse
 
codmar profile image
Codmar

I did once to find out some keyword mistakes in some documents and correct those words automatically. It was pretty cool haha