Tagged Questions
The edit-distance tag has no wiki summary.
14
votes
5answers
320 views
Shortest sequence of operations transforming a file tree to another
Given two file trees A and B, is it possible to determine the shortest sequence of operations or a short sequence of operations that is necessary in order to transform A to B?
An operation can be:
...
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 ...
8
votes
4answers
3k views
Levenshtein distance in T-SQL
I am interested in algorithm in T-SQL calculating Levenshtein distance.
7
votes
1answer
128 views
Levenshtein Distance Formula in CoffeeScript?
I am trying to create or find a CoffeeScript implementation of the Levenshtein Distance formula, aka Edit Distance. Here is what I have so far, any help at all would be much appreciated.
levenshtein ...
7
votes
3answers
479 views
Java: Difference between two lists
My company's cat-herding application tracks a convoy of cats. Periodically, it needs to compare previousOrder to currentOrder (each is an ArrayList<Cat>) and notify the cat-wranglers of any ...
6
votes
3answers
343 views
Fast(er) algorithm for the Length of the Longest Common Subsequence (LCS)
Problem: Need the Length of the LCS between two strings. The size of the strings is at most 100 characters. The alphabet is the usual DNA one, 4 characters "ACGT". The dynamic approach is not quick ...
6
votes
5answers
177 views
How do I calculate the “difference” between two sequences of points?
I have two sequences of length n and m. Each is a sequence of points of the form (x,y) and represent curves in an image. I need to find how different (or similar) these sequences are given that fact ...
6
votes
8answers
827 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 ...
6
votes
8answers
3k 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 in finding our path. ...
6
votes
5answers
856 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 helpful.
The Wikipedia ...
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 ...
4
votes
1answer
839 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 strings, as described ...
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 ...
3
votes
2answers
165 views
How to find that two words differ by how much distance>> Is there any shortest way for this
I have read about Levenshtein distance about the calculation of the distance between the two distinct words.
I have one source string and i have to match it with all 10,000 target words. The closest ...
3
votes
1answer
462 views
How to correct bugs in this Damerau-Levenshtein implementation?
I'm back with another longish question. Having experimented with a number of Python-based Damerau-Levenshtein
edit distance implementations, I finally found the one listed below as ...
2
votes
1answer
83 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 ...
2
votes
3answers
600 views
how to convert python/cython unicode string to array of long integers, to do levenshtein edit distance
I have the following Cython code (adapted from the bpbio project) that does Damerau-Levenenshtein edit-distance calculation:
...
2
votes
1answer
970 views
Optimizing Levenshtein distance algorithm
I have a stored procedure that uses Levenshtein distance to determine the result closest to what the user typed. The only thing really affecting the speed is the function that calculates the ...
2
votes
4answers
154 views
Using base64 encoding as a mechanism to detect changes
Is it possible to detect changes in the base64 encoding of an object to detect the degree of changes in the object.
Suppose I send a document attachment to several users and each makes changes to it ...
1
vote
3answers
85 views
Pseudocode for script to check transcription accuracy / edit distances
I need to write a script, probably in Ruby, that will take one block of text and compare a number of transcriptions of recordings of that text to the original to check for accuracy. If that's just ...
0
votes
0answers
18 views
Search engine string matching
What is the typical algorithm used by online search engines to make suggestions for misspelled words. I'm not necessarily talking about Google, but any site with a search feature, such as as ...
0
votes
2answers
237 views
Shortest path from one word to another via valid words (no graph)
I came across this variation of edit-distance problem:
Find the shortest path from one word to another, for example storm->power, validating each intermediate word by using a isValidWord() function. ...
0
votes
1answer
81 views
Detailed distance between words
How would I go about displaying detailed distance between words.
For example, the output of the program could be:
Words are "car" and "cure":
Replace "a" with "u".
Add "e".
The Levenshtein distance ...
0
votes
1answer
86 views
Data integration problem - How to integrate similar entities
I have a database which has very similar rows within the same table. Those rows are similar because they have nearly equal column values. I need to integrate those corresponding rows into one single ...
-1
votes
1answer
12 views
Edit distance with swaps
Edit distance finds the number of insertion, deletion or substitutions required to one string to another. I want to to also include swaps in this algorithm. For example "apple" and "appel" should give ...