首页 > 代码库 > 自己整理的排序算法之(1) 选择排序
自己整理的排序算法之(1) 选择排序
1 //选择排序 2 package sort; 3 4 public class SelectionSort { 5 public static void SelectionSort(double[] list){ 6 for(int i=0;i<list.length-1 ;i++){ 7 double currentMin = list[i]; 8 int currentMinIndex = i; 9 10 for(int k=i+1 ;k<list.length ; k++){11 if(currentMin>list[k]){12 currentMin = list[k];13 currentMinIndex = k; 14 } 15 }16 17 if(currentMinIndex != i){18 19 list[currentMinIndex] = list[i];20 list[i] =currentMin; 21 }22 }23 }24 25 public static void main(String[] args){26 double[] list ={5.2 , 1.4 , 6.3, 2.3 ,4.6};27 SelectionSort(list);28 for(int i =0;i<list.length;i++){29 System.out.print(list[i]+" ");30 }31 }32 }
自己整理的排序算法之(1) 选择排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。