• 2021-04-14
    函数sort使用冒泡法将一维数组中各元素按值从小到大排序。 void sort(int a[ ],int n ) {int k,j,t; for(k=0;k 第一空: j=0 第二空: a[j]>a[j+1] 第三空: a[j+1]=a[j]
  • 举一反三