#include #include #include #include struct LIS{ char fname[100]; char sname[100]; int num; }; int keep(struct LIS *); int del(struct LIS *,int); void Sort_Struct(struct LIS *,int); void print(struct LIS *,int); int main(){ struct LIS list[100]; int count=keep(list); //printf("%d",count); int pult=del(list,count); //printf("%d",pult); Sort_Struct(list,count); print(list,count); return 0; } int keep(struct LIS *list){ char *array; int stop,count; int num; for(int i=0; stop!=EOF; i++){ array=(char*)malloc(100); stop =0; for(int j=0;stop!='\n';j++){ stop=getchar(); if(stop==EOF) break; if(stop!='\n'){ array[j]=stop; } } if(stop==EOF) break; sscanf(array,"%d %s %s",&list[i].num,list[i].sname,list[i].fname); count++; free(array); } return count; } int del(struct LIS *list,int count){ for(int i=0;ii;j--){ if(list[i].numstrlen(list[j].sname)){\ val=strlen(list[i].sname); } else{ val=strlen(list[j].sname); } for(int k=0;kstrlen(list[j].fname)){\ val=strlen(list[i].fname); } else{ val=strlen(list[j].fname); } for(int l=0;l