排序算法 - 插入排序

直接插入排序  基本思路 一趟直接插入排序:在有序區中插入R[i]的過程。   算法代碼 1 //直接插入排序 2 void InsertSort(int *arr, int n) 3 { 4 int i, j; 5 int temp; 6 7 for (i = 1; i < n; i++) 8 { 9 if (arr[i] <
相關文章
相關標籤/搜索