摘要:
#include #include #include #define MAXLENGTH 21typedef struct { int key;}Record;typedef struct{ Record r[MAXLENGTH]; int length;}DataList;void sort(DataList *list){ printf("list length = %d\n",list->length); int i = 1; for(i=1;ilength;i++) { printf("list r[%d].key=%d \t",i,lis 阅读全文