The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
53 views

Given the pairwise edit distance of a and b and b and c, can we find the pairwise edit distance of a and c?

If we have three string a, b, c and we know ( or already calculated ) edit_distance(a,b) and edit_distance(b,c), can we efficiently calculate edit_distance(a,c) without actually comparing a and c. ...
1
vote
3answers
54 views

Edit distance between two graphs

I'm just wondering if, like for strings where we have the Levenshtein distance (or edit distance) between two strings, is there something similar for graphs? I mean, a scalar measure that identifies ...
0
votes
0answers
121 views

A programming-language-friendly edit distance algorithm for building the next generation diff [closed]

I have been looking at ways to improve the diff highlighting for the diff I use the most, which is git diff --porcelain along with diff-highlight. I have found a lot of literature in the field of ...
0
votes
0answers
56 views

Jaccard index missing possible matches for edit distance

Developing an OCR correction module, I'm experimeting in Python. The idea is to try to correct each word in OCR based on dictionary(vocab) using bigrams,Jaccard index and edit distance. Sample vocab: ...
-3
votes
1answer
42 views

Algorithm to find where exactly two strings match/differ [closed]

I am working on finding the similarity/differences in the source code of different java programs. I've used an implementation of the Levenshtein algorithm to find how similar two programs are. I want ...
0
votes
0answers
90 views

Edit distance for words [closed]

Imagine that you have the following document: test tests wiki wikipedia world worldcup and some queries to run on this document for calculating edit distance for each word in the document in the ...
0
votes
0answers
89 views

Edit distance between two sets of strings

Problem Definition: Given two sets of strings X and Y we want to find the edit distance between each word in X with each word in Y. I know Levenshtein distance algorithm using trie but this is only ...
1
vote
2answers
42 views

Edit Distance with accents

Are there some edit-distance in python that take account of the accent. Where for exemple hold the following property d('ab', 'ac') > d('àb', 'ab') > 0
2
votes
1answer
60 views

Clustering string data with ELKI

I need to cluster a large number of strings using ELKI based on the Edit Distance / Levenshtein Distance. Since the data set is too large, I'd like to avoid file based precomputed distance matrices. ...
0
votes
1answer
249 views

Change distance between x-axis ticks in ggplot2

Right now I am producing a line graph with three observations. Hence, there are three x-axis ticks. I want to manually reduce the distance between the x-axis ticks and basically force the ...
1
vote
0answers
171 views

Complexity of edit distance (Levenshtein distance) recursion top down implementation

I have been working all day with a problem which I can't seem to get a handle on. The task is to show that a recursive implementation of edit distance has the time complexity Ω(2max(n,m)) where ...
3
votes
3answers
148 views

Generating a list of distinct (distant, by edit distance) words by filtering

I have a long (> 1000 items) list of words, from which I would like to remove words that are "too similar" to other words, until the remaining words are all "significantly different". For example, so ...
1
vote
1answer
204 views

How do I balance a BK-Tree and is it necessary?

I am looking into using an Edit Distance algorithm to implement a fuzzy search in a name database. I've found a data structure that will supposedly help speed this up through a divide and conquer ...
1
vote
2answers
267 views

Edit distance explanation

I have seen a lot of code to solve that but I am not able to see why they are using a matrix to represent the distance between two words. Can any one please explain to me? Here is a sample code I ...
1
vote
1answer
199 views

Implementing edit distance method using recursion results in object heap error

private static int editDistance(ArrayList<String> s1, ArrayList<String> s2) { if (s1.size()==0) { return s2.size(); } else if (s2.size()==0) { ...
1
vote
1answer
87 views

Levenshtein distance in C with required memory of O(m)

I'm writing a code that calculates the edit distance of two given strings t and s with m = strlen(t) and n = strlen(s) and the code should only use memory in O(m). Furthermore, it should not need ...
5
votes
3answers
192 views

Generate regular expression for given string and edit distance

I have the problem that I want to match all strings in the database having a certain edit distance to a given string. My idea was to generate a regular expression that would match all strings with ...
0
votes
1answer
140 views

Levenshtein-Damerau Distance-Calculation with a Max-Distance-of-Interest Bound

Consider the C# implementation of the LD-distance calculation-algorithm suggested on this Wiki page. I'd like to extend it with a capability to abort the calculation-process in case a certain ...
0
votes
2answers
204 views

How to find all strings at a given edit distance from a given string

We all have seen in Google, that if we type a query, and make a typo, Google suggests a saner version of the query (which is correct more often than not). Now how do they do it? One possible way I can ...
0
votes
1answer
153 views

how to efficiently check if the Levenshtein edit distance between two string is 1 [closed]

please note that it doesn't require to really calculate Levenshtein edit distance. just check it's 1 or not. The signature of the method may look like this: bool Is1EditDistance(string s1, string ...
0
votes
1answer
80 views

Comparing and visualising groups of sequences

I have two groups A and B of strings of the letters "AGTE" and I'd like to find some way of comparing these to see whether they are statistically similar. The first group A are real world ...
6
votes
1answer
208 views

Is it possible to determine Levenshtein distance for Mandarin Chinese characters?

Good evening, We are developing a system to do fuzzy matching on over 50 international languages using the UTF8, UTF16, and UTF32 Unicode charcater standard. So far, we have been able to use ...
0
votes
1answer
90 views

Transform one list of objects into another list

This is a theory question so I'm going to use pseudo code. I have a list of objects that I need to transform into another list. I implemented the Levenshtein algorithm, and that works just fine, but ...
5
votes
2answers
170 views

most efficient edit distance to identify misspellings in names?

Algorithms for edit distance give a measure of the distance between two strings. Question: which of these measures would be most relevant to detect two different persons names which are actually the ...
1
vote
2answers
163 views

Edit distance with varying dictionaries

My question is similar to Algorithm to transform one word to another through valid words But with is a major difference. I have one fixed word say "JAMES" and varying dictionaries as i/p. Ofcourse, I ...
1
vote
1answer
268 views

Levenshtein edit distance algorithm that supports Transposition of two adjacent letters in C#

i'm searching for an algorithm for computing Levenshtein edit distance that also supports the case in which two adjacent letters are transposed that is implemented in C#. for example the word ...
4
votes
2answers
317 views

Looking for similar words

I'm trying to write a spellchecker module. It loads a text, creates a dictionary from 16 mb file and then checks if encountered word is similar to the word in dictionary (similar = varies up to two ...
0
votes
1answer
100 views

getting segmentation fault on multi dimension array while calculating Levenshtein Distance

I was trying to calculate Levenshtein Distance. The following code works for small strings e.g. kit/fit or sitting/knit. But, it gave me a segmentation fault for sunday/saturday strings. After using ...
4
votes
3answers
279 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 ...
0
votes
0answers
132 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
1answer
401 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 ...
2
votes
1answer
746 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 ...
6
votes
1answer
897 views

String distance, transpositions only [duplicate]

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 ...
1
vote
3answers
208 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 ...
15
votes
5answers
449 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: ...
8
votes
1answer
284 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 ...
6
votes
3answers
1k 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
617 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 ...
3
votes
5answers
554 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 ...
9
votes
3answers
3k 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 ...
3
votes
2answers
271 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 ...
0
votes
2answers
1k 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
111 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 ...
3
votes
1answer
867 views

Word-level edit distance of a sentence

Is there an algorithm that lets you find the word-level edit distance between 2 sentences? For eg., "A Big Fat Dog" and "The Big House with the Fat Dog" have 1 substitute, 3 insertions
0
votes
1answer
244 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 ...
3
votes
1answer
710 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
3answers
929 views

how to convert python/cython unicode string to array of long integers, to do levenshtein edit distance [duplicate]

Possible Duplicate: How to correct bugs in this Damerau-Levenshtein implementation? I have the following Cython code (adapted from the bpbio project) that does Damerau-Levenenshtein ...
2
votes
1answer
1k 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
221 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 ...
7
votes
8answers
2k 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 ...

1 2