码迷,mamicode.com
首页 > 其他好文 > 详细

选择排序

时间:2014-06-18 10:31:17      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   color   

package foo;

import java.util.Arrays;

public class Main {
    
    public static void selectionSort(int[] a, int len) {
        int in, out, min;
        for (out=0;out<len-1;++out) {
            min = out;
            for (in=out+1;in<len;++in) {
                if(a[in]<a[min]) {
                    min = in;
                }
            }
            swap(a, out, min);
        }
    }
    
    public static void swap(int[] a, int index1, int index2) {
        int temp = a[index1];
        a[index1] = a[index2];
        a[index2] = temp;
    }
    
    public static void main(String[] args) throws Exception {
        int[] a = new int[]{3,2,1,5,4};
        selectionSort(a, a.length);
        System.out.println(Arrays.toString(a));
    }
}

选择排序的效率:O(N*N),比较N*N/2,交换<N; 选择排序与冒泡排序比较,比较次数没有明显改变,但交换次数明显减少了很多

选择排序,布布扣,bubuko.com

选择排序

标签:style   class   blog   code   java   color   

原文地址:http://www.cnblogs.com/qrlozte/p/3793251.html

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