Uses of Class
org.cicirello.sequences.distance.EditDistance
-
Packages that use EditDistance Package Description org.cicirello.sequences.distance Implementations of distance measures for general sequences of various forms, including Strings, arrays of primitive types, arrays of objects, etc. -
-
Uses of EditDistance in org.cicirello.sequences.distance
Subclasses of EditDistance in org.cicirello.sequences.distance Modifier and Type Class Description class
LongestCommonSubsequenceDistance
LongestCommonSubsequenceDistance is a form of EditDistance, where the edit operations are limited to deletions and insertions (i.e., no replacements or changes), and where the cost of an edit operation is simply 1.
-