distancePermutationInsert: Insert Distance for Permutations
Description
The Insert Distance is an edit distance. It counts the minimum number of delete/insert operations
required to transform one permutation into another. A delete/insert operation shifts one element to a new position.
All other elements move accordingly to make place for the element. E.g., the following shows a single delete/insert move that
sorts the corresponding permutation: 1 4 2 3 5 -> 1 2 3 4 5.
Usage
distancePermutationInsert(x, y)
Value
numeric distance value $$d(x,y)$$, scaled to values between 0 and 1 (based on the maximum possible distance between two permutations)
Arguments
x
first permutation (integer vector)
y
second permutation (integer vector)
References
Schiavinotto, Tommaso, and Thomas Stuetzle. "A review of metrics on permutations for search landscape analysis." Computers & operations research 34.10 (2007): 3143-3153.
Wikipedia contributors, "Longest increasing subsequence", Wikipedia, The Free Encyclopedia, 12 November 2014, 19:38 UTC, [accessed 13 November 2014]