摘要: 1 //选择排序和推排序 2 3 #include "stdio.h" 4 #define MAX 20 5 typedef int KeyType; 6 typedef char InfoType[10]; 7 typedef struct 8 { 9 KeyType key; 10 InfoTy 阅读全文
posted @ 2016-12-13 19:39 梦想起航2016 阅读(226) 评论(0) 推荐(0) 编辑