Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (2)

26
votes
3answers
3k views

What algorithm gives suggestions in a spell checker?

What algorithm is typically used when implementing a spell checker that is accompanied with word suggestions? At first I thought it might make sense to check each new word typed (if not found in the ...
17
votes
4answers
260 views

what is a good metric for deciding if 2 Strings are “similar enough”

I'm working on a very rough, first-draft algorithm to determine how similar 2 Strings are. I'm also using Levenshtein Distance to calculate the edit distance between the Strings. What I'm doing ...
16
votes
7answers
8k views

Implementation of Levenshtein distance for mysql/fuzzy search?

I would like to be able to search a table as follows for smith as get everything that it within 1 variance. Data: O'Brien Smithe Dolan Smuth Wong Smoth Gunther Smiht I have looked into using ...
13
votes
4answers
1k views

Clustering ~100,000 Short Strings in Python

I want to cluster ~100,000 short strings by something like q-gram distance or simple "bag distance" or maybe Levenshtein distance in Python. I was planning to fill out a distance matrix (100,000 ...
13
votes
9answers
512 views

Best way to detect similar email addresses?

I have a list of ~20,000 email addresses, some of which I know to be fraudulent attempts to get around a "1 per e-mail" limit, such as username1@gmail.com, username1a@gmail.com, username1b@gmail.com, ...
11
votes
7answers
3k views

Implementing a simple Trie for efficient Levenshtein Distance calculation - Java

UPDATE 3 Done. Below is the code that finally passed all of my tests. Again, this is modeled after Murilo Vasconcelo's modified version of Steve Hanov's algorithm. I will try to make the Levenshtein ...
11
votes
2answers
192 views

Rating the quality of string matches

What would be the best way to compare a pattern with a set of strings, one by one, while rating the amount with which the pattern matches each string? In my limited experience with regex, matching ...
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 ...
8
votes
3answers
142 views

How to check efficiently if two characters are neighbours on the keyboard?

I want to develop a soft keyboard for Android and already got a autocorrect algorithm which makes suggestions based on the fact if the input character and the character of a word from the dictionary ...
8
votes
1answer
133 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 ...
8
votes
2answers
688 views

how to convert a string into a palindrome with minimum number of operations?

Here is the problem states to convert a string into a palindrome with minimum number of operations. I know it is similar to the Levenshtein distance but I can't solve it yet For example, input ...
8
votes
4answers
3k views

Levenshtein distance in T-SQL

I am interested in algorithm in T-SQL calculating Levenshtein distance.
7
votes
1answer
689 views

Hamming Distance vs. Levenshtein Distance

For the problem I'm working on, finding distances between two sequences to determine their similarity, sequence order is very important. However, the sequences that I have are not all the same length, ...
7
votes
3answers
1k views

Levenshtein Distance Algorithm better than O(n*m)?

I have been looking for an advanced levenshtein distance algorithm, and the best I have found so far is O(n*m) where n and m are the lengths of the two strings. The reason why the algorithm is at this ...
7
votes
2answers
333 views

How to modify Levenshteins Edit Distance to count “adjacent letter exchanges” as 1 edit

I'm playing around with Levenshteins Edit Distance algorithm, and I want to extend this to count transpositions -- that is, exchanges of adjacent letters -- as 1 edit. The unmodified algorithm counts ...
7
votes
4answers
1k views

Text similarity algorithm

I have two subtitles files. I need a function that tells whether they represent the same text, or the similar text Sometimes there are comments like "The wind is blowing... the music is playing" in ...
7
votes
2answers
1k views

Matching an approximate string in a Core Data store

I have a small problem with the core data application i'm currently writing. I have two differents models, contexts and peristent stores. One is for my app data, the other one is for a website with ...
7
votes
8answers
1k views

Fuzzy matching of product names

I need to automatically match product names (cameras, laptops, tv-s etc) that come from different sources to a canonical name in the database. For example "Canon PowerShot a20IS", "NEW powershot A20 ...
6
votes
1answer
128 views

Efficiently determine “how sorted” a list is, eg. Levenshtein distance

I'm doing some research on ranking algorithms, and would like to, given a sorted list and some permutation of that list, calculate some distance between the two permutations. For the case of the ...
6
votes
3answers
169 views

Improved Levenshtein Algorithm

I recently implemented the levenshtein algorithm into our search engine database, but we have come across a problem. According to the basic levenshtein Levenshtein('123456','12x456') is the same ...
6
votes
2answers
124 views

What is the best way to compare data when importing to database?

I have a MySQL database table containing information on around 1000 shops. Now I will be importing more shops through uploading an Excel spread sheet, and I am trying to avoid duplicates. Shops may ...
6
votes
3answers
643 views

Using the Levenshtein distance in a spell checker

I am working on a spell checker in C++ and I'm stuck at a certain step in the implementation. Let's say we have a text file with correctly spelled words and an inputted string we would like to check ...
6
votes
2answers
481 views

Advice on how to improve a current fuzzy search implementation

I'm currently working on implementing a fuzzy search for a terminology web service and I'm looking for suggestions on how I might improve the current implementation. It's too much code to share, but I ...
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 ...
5
votes
2answers
570 views

Getting the closest string match

I need a way to compare multiple strings to a test string and return the string that closely resembles it: TEST STRING: THE BROWN FOX JUMPED OVER THE RED COW CHOICE A : THE RED COW JUMPED OVER THE ...
5
votes
5answers
1k views

Modifying Levenshtein Distance algorithm to not calculate all distances

I'm working on a fuzzy search implementation and as part of the implementation, we're using Apache's StringUtils.getLevenshteinDistance. At the moment, we're going for a specific maxmimum average ...
5
votes
4answers
415 views

Haskell tail-recursion performance question for Levenshtein distances

I'm playing around with calculating Levenshtein distances in Haskell, and am a little frustrated with the following performance problem. If you implement it most 'normal' way for Haskell, like below ...
5
votes
4answers
1k views

Most efficient way to calculate Levenshtein distance

I just implemented a best match file search algorithm to find the closest match to a string in a dictionary. After profiling my code, I found out that the overwhelming majority of time is spent ...
5
votes
3answers
366 views

Seeking algo for text diff that detects and can group similar lines

I am in the process of writing a diff text tool to compare two similar source code files. There are many such "diff" tools around, but mine shall be a little improved: If it finds a set of lines are ...
5
votes
5answers
3k views

String similarity metrics in Python

I want to find string similarity between two strings. This page has examples of some of them. Python has an implemnetation of Levenshtein algorithm. Is there a better algorithm, (and hopefully a ...
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
3answers
86 views

How to sort an array by similarity in relation to an inputted word.

I have on PHP array, for example: $arr = array("hello", "try", "hel", "hey hello"); Now I want to do rearrange of the array which will be based on the most nearly close words between the array and ...
4
votes
2answers
2k views

Levenshtein Distance in Excel

I have excel sheet with data which I want to get Levenshtein Distance between them. I already tried to export as text, read in from script (php), run Levenshtein, save it to excel again. But I am ...
4
votes
3answers
767 views

Modifying a Levenshtein distance function to calculate distance between two sets of x-y coordinates?

I've been trying to work on modifying a Levenshtein Distance function so that it can find the distance between two lines, or sets of x-y coordinates (in other words, how similar or different the lines ...
4
votes
3answers
161 views

Place dots where a word is misspelled

I'm creating a web app in PHP where people can try to translate words they need to learn for school. For example, someone needs to translate the Dutch word 'weer' to 'weather' in English, but ...
4
votes
9answers
2k views

Compare 5000 strings with PHP Levenshtein

I have 5000, sometimes more, street address strings in an array. I'd like to compare them all with levenshtein to find similar matches. How can I do this without looping through all 5000 and comparing ...
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
113 views

Match search word accuracy possibly using the Levenshtein distance

i have a mySQL table where people add their names and their interests. I want to use some sort of word match that goes through and finds either a 100% match or a close match. Ive heard of the ...
3
votes
3answers
483 views

Levenshtein Distance: Inferring the edit operations from the matrix

I wrote Levenshtein algorithm in in C++ If I input: string s: democrat string t: republican I get the matrix D filled-up and the number of operations (the Levenshtein distance) can be read in ...
3
votes
2answers
171 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
520 views

levenshtein alternative

i have a big set of queries and use levenshtein to calculate typos, now levenshtein causes mysql to take full cpu time. My query is a fulltext search + levenshtein in a UNION statement. sql1 is my ...
3
votes
3answers
201 views

Damerau–Levenshtein distance for language specific quirks

To Dutch speaking people the two characters "ij" are considered to be a single letter that is easily exchanged with "y". For a project I'm working on I would like to have a variant of the ...
3
votes
2answers
420 views

Better distance metrics besides Levenshtein for ordered word sets and subsequent clustering

I am trying to solve a problem that involves comparing large numbers of word sets , each of which contains a large, ordered number of words from a set of words (totaling around 600+, very high ...
3
votes
4answers
396 views

Levenshtein DFA in .NET

Good afternoon, Does anyone know of an "out-of-the-box" implementation of Levenshtein DFA (deterministic finite automata) in .NET (or easily translatable to it)? I have a very big dictionary with ...
3
votes
2answers
222 views

Is it possible to calucate the edit distance between a regexp and a string?

If so, please explain how. Re: what is distance -- "The distance between two strings is defined as the minimal number of edits required to convert one into the other." For example, xyz to XYZ would ...
3
votes
1answer
475 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 ...
3
votes
1answer
801 views

Finding closest neighbour using optimized Levenshtein Algorithm

I recently posted a question about optimizing the algorithm to compute the Levenshtein Distance, and the replies lead me to the Wikipedia article on Levenshtein Distance. The article mentioned that ...
3
votes
1answer
669 views

Damerau-Levenshtein php

I'm searching for an implementations of the Damerau–Levenshtein algorithm for PHP, but it seems that I can't find anything with my friend google. So far I have to use PHP implemented Levenshtein ...
3
votes
1answer
204 views

Writing a post search algorithm

I'm trying to write a free text search algorithm for finding specific posts on a wall (similar kind of wall as Facebook uses). A user is suppose to be able to write some words in a search field and ...
3
votes
3answers
233 views

Levenshtein questions

In the Levenshtein Distance algorithm, what does this line do?: d[i][j] = Minimum (d[i-1][j]+1, d[i][j-1]+1, d[i-1][j-1] + cost); Although it gets the minimum of all of those values, why is ...

1 2 3