Изменить 'du5/program.c'
This commit is contained in:
parent
3e6062d59a
commit
397ddbe984
@ -32,15 +32,16 @@ int keep(struct LIS *list){
|
||||
char *array;
|
||||
int stop,count;
|
||||
int num;
|
||||
int ss;
|
||||
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++;
|
||||
@ -67,29 +68,29 @@ void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
||||
struct LIS ilusion;
|
||||
for(int i=0;i<count;i++){
|
||||
for(int j=count;j>i;j--){
|
||||
if(list[i].num<list[j].num){
|
||||
if(list[i].num<list[j].num && list[j].num!=-1 && list[i].num!=-1){
|
||||
ilusion=list[i];
|
||||
list[i]=list[j];
|
||||
list[j]=ilusion;
|
||||
}
|
||||
if(list[i].num==list[j].num){
|
||||
for(int k=0;k<strlen(list[i].sname);k++){
|
||||
if(list[i].sname<list[j].sname){
|
||||
if(list[i].sname<list[j].sname && list[j].num!=-1 && list[i].num!=-1){
|
||||
ilusion=list[i];
|
||||
list[i]=list[j];
|
||||
list[j]=ilusion;
|
||||
}
|
||||
}
|
||||
}
|
||||
/* if(list[i].num==list[j].num && list[i].sname==list[j].sname){
|
||||
if(list[i].num==list[j].num && list[i].sname==list[j].sname){
|
||||
for(int l=0;l<strlen(list[i].fname);l++){
|
||||
if(list[i].fname<list[j].fname){
|
||||
if(list[i].fname<list[j].fname && list[j].num!=-1 && list[i].num!=-1){
|
||||
ilusion=list[i];
|
||||
list[i]=list[j];
|
||||
list[j]=ilusion;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -105,3 +106,5 @@ void print(struct LIS *list,int count){
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user