>I'm about to replace the edit-distance algorithm in FuzzyQuery from
>Levenstein to Hirschberg to save a couple of clockticks.

Have you allready confirmed Hirschberg algorithm to be faster than current 
implementation of edit distance? I am not convinced it helps really. Hirschberg 
and standard DP algorithm both have O(|s1|*|s2|) time. The only saving is that 
Hirschberg needs O(|s2|) space using binary recursion (classic needs 
O(|s1|*|s2|) space). 




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to