Sam's String Matching Algorithms Collection
dcs.shef.ac.uk
Sam's String Matching Algorithms Collection
1–5 of 5 posts
Re: Sam's String Matching Algorithms Collection
#2misnamed
Re: Sam's String Matching Algorithms Collection
#3Great collection, I'm gonna port a bunch of those to PHP, in case anyone cares.
Re: Sam's String Matching Algorithms Collection
#4I'm talking about this kind of thing (fuzzy string matching) at the Central PA Open Source Conference tomorrow:
http://www.cposc.org/
Also have slides (keynote, ppt, pdf, and example code) here: http://github.com/kyleburton/fuzzy-string
Interesting and useful algorithms.Re: Sam's String Matching Algorithms Collection
#5I'm talking about this kind of thing (fuzzy string matching) at the Central PA Open Source Conference tomorrow: http://www.cposc.org/ Also have slides (keynote, ppt, pdf, and example code) here: http://github.com/kyleburton/fuzzy-string Interesting and useful algorithms.
Thanks! Somehow I missed Text::Brew. Looks interesting.
I've found that scoring is a rather slow operation (relatively speaking), and so at the very least people should consider using memoization when they score or some other technique to reduce frequent scoring of identical terms.