算法、插入排序

时间:2015-06-28 08:32:45
【文件属性】:

文件名称:算法、插入排序

文件大小:1KB

文件格式:CPP

更新时间:2015-06-28 08:32:45

插入排序

插入排序代码 //InsertSort.cpp //This function is to sort SqList # include # include # define MAXSIZE 20 # define MAX_LENGTH 100 typedef int RedType; typedef struct //define structure SqList { RedType r[MAXSIZE+1]; int length; }SqList; void InsertSort(SqList &L) //InsertSort() sub-function { int i,j; for(i=2;i<=L.length;++i) if(L.r[i]>L.length; for(i=1;i<=L.length;++i) { cout<<"Please input the "<>L.r[i]; } cout<


网友评论

相关文章