问答详情
源自:6-12 综合练习

哪位大神帮忙解释一下这个排序的代码?谢谢

void sort(int score[])

{

int i,j;

for(i=N-2;i>=0;i--)

{

for(j=0;j<=i;j++)

{

if(score[j]<score[j+1])

{

int temp;

temp = score[j];

score[j] = score[j+1]; 

score[j+1]=temp;                  

}                 

}                   

}

printScore(score);     

}


提问者:慕标5051914 2020-12-30 14:26

个回答

  • Aguilvshan
    2021-01-30 17:04:52

    跟冒泡排序差不多意思