Изменить 'du5/program.c'
This commit is contained in:
parent
397ddbe984
commit
1b82a22be0
@ -66,6 +66,7 @@ int del(struct LIS *list,int count){
|
|||||||
|
|
||||||
void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
||||||
struct LIS ilusion;
|
struct LIS ilusion;
|
||||||
|
int val;
|
||||||
for(int i=0;i<count;i++){
|
for(int i=0;i<count;i++){
|
||||||
for(int j=count;j>i;j--){
|
for(int j=count;j>i;j--){
|
||||||
if(list[i].num<list[j].num && list[j].num!=-1 && list[i].num!=-1){
|
if(list[i].num<list[j].num && list[j].num!=-1 && list[i].num!=-1){
|
||||||
@ -77,6 +78,7 @@ void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
|||||||
for(int k=0;k<strlen(list[i].sname);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){
|
if(list[i].sname<list[j].sname && list[j].num!=-1 && list[i].num!=-1){
|
||||||
ilusion=list[i];
|
ilusion=list[i];
|
||||||
|
free(list[i].sname);
|
||||||
list[i]=list[j];
|
list[i]=list[j];
|
||||||
list[j]=ilusion;
|
list[j]=ilusion;
|
||||||
}
|
}
|
||||||
@ -86,6 +88,7 @@ void Sort_Struct(struct LIS *list,int count){//bubble sort :)
|
|||||||
for(int l=0;l<strlen(list[i].fname);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){
|
if(list[i].fname<list[j].fname && list[j].num!=-1 && list[i].num!=-1){
|
||||||
ilusion=list[i];
|
ilusion=list[i];
|
||||||
|
free(list[i].fname);
|
||||||
list[i]=list[j];
|
list[i]=list[j];
|
||||||
list[j]=ilusion;
|
list[j]=ilusion;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user