The C_{k} tends to increase dramatically as the input changes, say from well sorted array to totally reversed array. For example:
A_{1} = {1,2,7,3,4,5,6} : C = 4
B_{3} = {1,6,5,4,2,3,7} : C = 9, that is almost double the number of swaps.
What accounts for these? (Unless I totally...