摘要: 1 #include 2 #include 3 #include 4 struct SortObject{ 5 int n; 6 int * record; 7 }; 8 typedef struct SortObject * Array; 9 10 void insertSort(Array a){ 11 int i,j; ... 阅读全文
posted @ 2018-06-04 16:55 f-- 阅读(293) 评论(0) 推荐(0) 编辑