为了账号安全,请及时绑定邮箱和手机立即绑定

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

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);     

}


正在回答

1 回答

跟冒泡排序差不多意思


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信