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

选择排序

时间:2019-04-07 10:01:29      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:for   []   结果   ons   mini   print   ++   int   system   

一、代码

package algorithm;

public class SelectionSort {

    public static void selectionSort(int[] arr) {
        if (null == arr || arr.length <= 0) {
            return;
        }

        for (int i = 0; i < arr.length - 1; i++) {
            int minIndex = i;
            for (int j = i + 1; j < arr.length; j++) {
                if (arr[minIndex] > arr[j]) {
                    minIndex = j;
                }
            }
            int temp = arr[i];
            arr[i] = arr[minIndex];
            arr[minIndex] = temp;
        }

        print(arr);
    }

    private static void print(int[] arr) {
        for (int e : arr) {
            System.out.print(e + " ");
        }
    }

    public static void main(String[] args) {
        int[] arr = {13, 7, 5, 8, 64, 2, 4, 62, 0, 1};
        selectionSort(arr);
    }

}

二、运行结果

技术图片

选择排序

标签:for   []   结果   ons   mini   print   ++   int   system   

原文地址:https://www.cnblogs.com/wangzaiplus/p/10663797.html

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