Tagged Questions

6
votes
8answers
824 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 suspiciously close to other ...
4
votes
1answer
141 views

String distance, transpositions only [closed]

Possible Duplicate: Counting the swaps required to convert one permutation into another I'm looking for an algorithm that would count some kind of string distance where only allowed ...
2
votes
1answer
80 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 ...