继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

算法:选择排序法 - Selection Sort (Java)

小鱼儿yuy
关注TA
已关注
手记 11
粉丝 7
获赞 180
package com.yuyong.alorithms;

public class SelectionSort {

    /**
     * @param args
     */
    public void selectionSort(int arr[], int n) {

        for (int i = 0; i < n; i++) {
            // 寻找[i,n)区间范围内的最小值
            int minIndex = i;
            int temp;
            for (int j = i + 1; j < n; j++) {
                if (arr[j] < arr[minIndex]) {
                    minIndex = j;
                }
            }
            temp = arr[minIndex];
            arr[minIndex] = arr[i];
            arr[i] = temp;
        }

    }

    public static void main(String[] args) {

        int[] a = { 10, 8, 9, 6, 7, 5, 4, 3, 1, 2 };
        SelectionSort ss = new SelectionSort();
        ss.selectionSort(a, 10);
        for (int i = 0; i < 10; i++) {
            System.out.print(a[i] + " ");
        }
    }

}
打开App,阅读手记
2人推荐
发表评论
随时随地看视频慕课网APP