1 #include2 #include 3 struct node 4 { 5 int w,j; 6 } th[100],t; 7 int main() 8 { 9 int i,j,n;10 while(scanf("%d",&n)!=EOF)11 {12 for(i=0; i th[j+1].w)25 {26 t=th[j],th[j]=th[j+1],th[j+1]=t;27 }28 else if(th[j].w==th[j+1].w)29 {30 if(th[j].j
本文共 479 字,大约阅读时间需要 1 分钟。
1 #include2 #include 3 struct node 4 { 5 int w,j; 6 } th[100],t; 7 int main() 8 { 9 int i,j,n;10 while(scanf("%d",&n)!=EOF)11 {12 for(i=0; i th[j+1].w)25 {26 t=th[j],th[j]=th[j+1],th[j+1]=t;27 }28 else if(th[j].w==th[j+1].w)29 {30 if(th[j].j
转载于:https://www.cnblogs.com/Angfe/p/10448720.html