从第二个开始,从后面往前找,如果比其小,就交换,else 就终止
for i = 1 i
for j = i j > 0 (到第二个) j--
if <
swap
下面给出源码
void InsertSort( T arr[], int n){
for(int i = 1 ; i < n ; i++){
for( int j = i ; j > 0 && arr[j] < arr[j - 1]; j --)
int *arr = SortTestHelper :: generateRandomArr(n, 0, n) ;
int *arr2 = SortTestHelper :: copyIntArray(arr, n);
SortTestHelper::test_sort("selection Sort", selectionSort, arr,n);
SortTestHelper::test_sort("Insertion Sort", InsertSort, arr2,n);
辅助函数 多了一个copy
给出完整代码
int* copyIntArray(int a[], int n){