4-6 InsertSort.c
1 #include2 #include "4-1 CreateData.c" //生成随机数的函数 3 #define ARRAYLEN 10 //需要排序的数据元素数量 4 void InserSort(int a[],int n)//直接插入排序 5 { 6 int i,j,t; 7 for(i=1;i =0 && t
本文共 287 字,大约阅读时间需要 1 分钟。
4-6 InsertSort.c
1 #include2 #include "4-1 CreateData.c" //生成随机数的函数 3 #define ARRAYLEN 10 //需要排序的数据元素数量 4 void InserSort(int a[],int n)//直接插入排序 5 { 6 int i,j,t; 7 for(i=1;i =0 && t
转载于:https://www.cnblogs.com/wozixiaoyao/p/5683155.html