灵巧手链

文章
8
资源
0
加入时间
3年0月21天

数组的排序,加入数组中相邻元素的置换

/*按大小排列数组中元素的顺序{2,23,5,6,9,1}*///从小到大排列//内循环结束一次,最值出现在头角标位上//选择排序class ArrayTest2{ public static void selectsort(int[] arr) { for(int x=0;x<arr.length-1;x++) { for(int y=x+1;y<arr.leng