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 the set to just strings of similar lengths but that still would only narrow it down to a few thousand strings and this still is very slow. Is there a datastructure that allows for a quick lookup of similar strings or is there another way I could address this problem?

link|improve this question

78% accept rate
How are you doing it right now? Can you show some code? – juergen d Feb 4 at 8:12
3  
Define "similar". – Michael Borgwardt Feb 4 at 8:23
By similar I mean comparing words that are common spelling mistakes such as "exanple" and "example" or "weird" and "wierd". – Lezan Feb 4 at 9:01
1  
Looks like you want an implementation of the levenstein distance: stackoverflow.com/questions/6087281/…. – Kurt Du Bois Feb 4 at 9:05
I am currently doing it the following way: String currentString; List distanceList; (for word: wordList){ int distance = calculateDistance(currentString,word) distanceList.add(distance) } – Lezan Feb 4 at 9:07
feedback

3 Answers

up vote 6 down vote accepted

Sounds like a BK-tree might be what you want. Here's an article discussing them: http://blog.notdot.net/2007/4/Damn-Cool-Algorithms-Part-1-BK-Trees. A quick Google yields some Java implementations.

link|improve this answer
Thanks I will look this up and let you know how it goes, thank you! – Lezan Feb 4 at 9:07
Yup that did it, needed a different implementation of the search but it was perfect! Thank you!! – Lezan Feb 5 at 11:16
feedback

Levenshtein Automata allow for fast selection of a set of words from a large dictionary such that they are within the given Levenshtein distance from a given word.

See: Schulz K, Mihov S. (2002) Fast String Correction with Levenshtein-Automata.

link|improve this answer
feedback

If your criteria for 'similar' define a total ordering, you should be able to define a Comparator and use a TreeSet to find the closest matches (eg using the ceiling and floor methods).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.