码迷,mamicode.com
首页 > 编程语言 > 详细

java 选择排序

时间:2019-08-09 22:03:39      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:temp   for   ati   static   string   mini   selection   int   java   

java selectionSort

public class SelectionSort {
    public static void main(String[] args) {
        int[] arr = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
        selectionSort(arr);
        System.out.println(Arrays.toString(arr));
    }

    public static void selectionSort(int[] arr) {
        for (int j = 0; j < arr.length; j++) {
            int minIndex = j;
            for (int i = j + 1; i < arr.length; i++) {
                if (arr[i] < arr[minIndex]) {
                    minIndex = i;
                }
            }
            int temp = arr[j];
            arr[j] = arr[minIndex];
            arr[minIndex] = temp;
        }
    }

}

java 选择排序

标签:temp   for   ati   static   string   mini   selection   int   java   

原文地址:https://www.cnblogs.com/wilwei/p/11329561.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!