摘要: 本题要求实现直接插入排序函数,待排序列的长度1<=n<=1000。 函数接口定义: void InsertSort(SqList L); 其中L是待排序表,使排序后的数据从小到大排列。 ###类型定义: typedef int KeyType; typedef struct { KeyType *e 阅读全文
posted @ 2021-12-08 20:12 zrswheart 阅读(83) 评论(0) 推荐(0) 编辑