5
votes
8answers
172 views
Efficient way of calculating likeness scores of strings when sample size is large?
Let's say that you have a list of 10,000 email addresses, and you'd like to find what some of the closest "neighbors" in this list are - defined as email addresses that are suspici …
4
votes
7answers
379 views
Shortest path to transform one word into another
For a Data Structures project, I must find the shortest path between two words (like "cat" and "dog), changing only one letter at a time. We are given a Scrabble word list to use i …
6
votes
5answers
296 views
Is there an edit distance algorithm that takes “chunk transposition” into account?
I put "chunk transposition" in quotes because I don't know whether or what the technical term should be. Just knowing if there is a technical term for the process would be very hel …
7
votes
6answers
599 views
Levenshtein distance - how to better handle words swapping positions?
Hi,
I've had some success comparing strings using the PHP levenshtein() function.
However, for two strings which contain substrings that have swapped positions, the algorithm cou …
1
vote
3answers
421 views
Levenstein distance in T-SQL
I am interested in algorithm in T-SQL calculating Levenstein distance.
Thanks!
2
votes
1answer
321 views
How do you implement Levenshtein distance in Delphi?
I'm posting this in the spirit of answering your own questions.
The question I had was: How can I implement the Levenshtein algorithm for calculating edit-distance between two str …
