Uses of Interface
org.cicirello.permutations.distance.NormalizedPermutationDistanceMeasurerDouble
Packages that use NormalizedPermutationDistanceMeasurerDouble
Package
Description
Implementations of a variety of permutation distance measures.
-
Uses of NormalizedPermutationDistanceMeasurerDouble in org.cicirello.permutations.distance
Subinterfaces of NormalizedPermutationDistanceMeasurerDouble in org.cicirello.permutations.distanceModifier and TypeInterfaceDescriptioninterfaceImplement this interface to define a distance metric for permutations that supports normalizing the distance to the interval [0,1], but where the base distance is an integer value.Classes in org.cicirello.permutations.distance that implement NormalizedPermutationDistanceMeasurerDoubleModifier and TypeClassDescriptionfinal classAcyclic edge distance treats the permutations as if they represent sets of edges, and counts the number of edges that differ.classBlock Interchange Distance is the minimum number of block interchanges necessary to transform one permutation into the other.final classCycle distance is the count of the number of non-singleton permutation cycles between a pair of permutations.final classCycle edit distance is the minimum number of non-singleton permutation cycles necessary to transform permutation p1 into p2.final classCyclic edge distance treats the permutations as if they represent sets of edges, and counts the number of edges that differ.final classCyclic RType distance treats the permutations as if they represent sets of directed edges, and counts the number of edges that differ.final classDeviation distance is the sum of the positional deviation of the permutation elements.final classNormalized Deviation distance is the sum of the positional deviation of the permutation elements divided by N-1 (where N is the length of the permutation).final classThe original version of Normalized Deviation distance (Ronald, 1998) is the sum of the positional deviation of the permutation elements divided by N-1 (where N is the length of the permutation).final classExact Match distance is an extension of Hamming distance but to non-binary strings, in this case, permutations.final classInterchange distance is the minimum number of swaps necessary to transform one permutation into the other.final classK-Cycle distance is the count of the number of non-singleton permutation cycles of length at most K.final classKendall Tau distance is sometimes also known as bubble sort distance, as it is the number of adjacent swaps necessary to transform one permutation into the other.final classLee Distance is closely related to deviation distance.final classReinsertion distance is the count of the number of removal/reinsertion operations needed to transform one permutation into the other.final classReversal Distance is the minimum number of subpermutation reversals necessary to transform one permutation into the other.final classRType distance treats the permutations as if they represent sets of directed edges, and counts the number of edges that differ.final classScramble Distance is the minimum number of random shufflings needed to transform one permutation into the other.final classSquared Deviation distance is the sum of the squares of the positional deviations of the permutation elements.final classThis class implements the weighted Kendall tau distance.