数据结构 学习数据结构,每天一个算法:1.直接插入排序:#define MXSIZE 10typedef struct{int r[MAXSIZE+1]; //用于存储要排序数组,r[0]用作哨兵或临时变量int length;}sqlist;void insertsort(sqlist *l){int i,j;for(i=2;i<=l->...