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

选择排序

时间:2019-08-18 00:22:28      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:pre   stat   选择   public   for   ati   ++   sel   oid   

选择排序

public class TestSort {
    public static void selectSort(int[] a) {
        int index, temp;
        for (int i = 0; i < a.length - 1; i++) {
            index = i;
            for (int j = i + 1; j < a.length; j++) {
                if (a[j] < a[index]) {
                    index = j;
                }
            }
            if (i != index) {
                temp = a[i];
                a[i] = a[index];
                a[index] = temp;
            }
        }
    }
}

选择排序

标签:pre   stat   选择   public   for   ati   ++   sel   oid   

原文地址:https://www.cnblogs.com/hglibin/p/11370949.html

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