i know insertion sort isn't that great...but even still...what are two more simple improvements that could be made to the sort below?
public static void insertion_sort_with_moves(int[] arr){
for (int i = 1; i <= arr.length; i++){
int v = arr[i-1];
int j = i-1;
for (/*declared j outside loop*/; j > 0; j--) {
//compswap(a[j-1], a[j]);
if (v < arr[j-1]) arr[j] = arr[j-1];
else break;
}
arr[j] = v;
}
}
final. This allows the compiler to make certain optimizations it wouldn't be able to otherwise. – corsiKa Feb 23 '11 at 18:54