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

插入排序

时间:2014-06-21 09:35:44      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   color   

package foo;

import java.util.Arrays;

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

插入排序的效率:O(N*N), 比较N*N/4,复制N*N/4,插入排序在随机数的情况下,比冒泡快一倍,比选择稍快,在基本有序的数组中,插入排序几乎只需要O(N),在逆序的情况下,并不比冒泡快。

插入排序,布布扣,bubuko.com

插入排序

标签:style   class   blog   code   java   color   

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

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