摘要: 1 public class ccc { 2 public void testSort1(int[] a){//选择排序 3 int length = a.length; 4 5 for(int i = 0;i<length-1;i++){ 6 int temp = a[i]; 7 int pos= 阅读全文
posted @ 2020-06-29 22:56 xinxinpang 阅读(149) 评论(0) 推荐(0) 编辑