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

降序排序的第一个循环的i=N-2是什么意思

//分数降序排序
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);    
}

正在回答

3 回答

不是太懂。

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

可以参考一下前面的冒泡排序

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

可以参考一下前面的冒泡排序

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

举报

0/150
提交
取消

降序排序的第一个循环的i=N-2是什么意思

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