Изменить 'du5/program.c'
This commit is contained in:
parent
76b3ecbbd5
commit
f366f76d80
@ -62,13 +62,7 @@ void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
||||
list[j]=ilusion;
|
||||
}
|
||||
if(list[i].num==list[j].num){
|
||||
if(strlen(list[i].sname)>strlen(list[j].sname)){\
|
||||
val=strlen(list[i].sname);
|
||||
}
|
||||
else{
|
||||
val=strlen(list[j].sname);
|
||||
}
|
||||
for(int k=0;k<val;k++){
|
||||
for(int k=0;k<strlen(list[i].sname);k++){
|
||||
if(list[i].sname<list[j].sname && list[j].num!=-1 && list[i].num!=-1){
|
||||
ilusion=list[i];
|
||||
list[i]=list[j];
|
||||
@ -77,17 +71,11 @@ void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
||||
}
|
||||
}
|
||||
if(list[i].num==list[j].num && list[i].sname==list[j].sname){
|
||||
if(strlen(list[i].fname)>strlen(list[j].fname)){\
|
||||
val=strlen(list[i].fname);
|
||||
}
|
||||
else{
|
||||
val=strlen(list[j].fname);
|
||||
}
|
||||
for(int l=0;l<val;l++){
|
||||
for(int l=0;l<strlen(list[i].fname);l++){
|
||||
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;
|
||||
list[i]=list[j-1];
|
||||
list[j+1]=ilusion;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user