Tagged Questions
10
votes
9answers
2k views
Levenshtein distance: how to better handle words swapping positions?
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 counts those as whole new ...
3
votes
5answers
204 views
Figure out if a business name is very similar to another one - Python
I'm working with a large database of businesses.
I'd like to be able to compare two business names for similarity to see if they possibly might be duplicates.
Below is a list of business names that ...
2
votes
1answer
79 views
Algorithm to find edit distance to all substrings
Given 2 strings s and t. I need to find for each substring in s edit distance(Levenshtein distance) to t. Actually I need to know for each i position in s what is the minimum edit distance for all ...