Tagged Questions
14
votes
5answers
322 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
3k 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 ...
7
votes
3answers
542 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
391 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
8answers
864 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
881 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
3answers
97 views
Quickly compare a string against a Collection in Java
I am trying to calculate edit distances of a string against a collection to find the closest match. My current problem is that the collection is very large (about 25000 items), so I had to narrow down ...
4
votes
1answer
158 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
857 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
2answers
172 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 ...
2
votes
1answer
99 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
4answers
159 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
92 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
2answers
272 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. ...