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

插入排序算法

时间:2018-08-26 13:09:00      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:bsp   打印   import   sort   tiny   key   color   gen   for   

import cn.idestiny.util.GeneratedArray;

/**
 * 插入排序算法实现
 */
public class InsertionSort {

    public static void main(String[] args) {

        //随机生成指定长度数组
        int[] randomarr = GeneratedArray.randomGeneratedArray(50, 60, 10000);
        //打印为排序的数组
        GeneratedArray.printArray(randomarr);
        long start = System.currentTimeMillis();
        for (int i = 1;i<randomarr.length;i++){
            int key = randomarr[i];
            int j = i-1;
            while(j>=0&&randomarr[j]<key){
                randomarr[j+1] = randomarr[j];
                j--;
            }
            randomarr[j+1]=key;
        }
        System.out.println(System.currentTimeMillis()-start);
        //打印排序好的数组
        GeneratedArray.printArray(randomarr);
    }

}

 

插入排序算法

标签:bsp   打印   import   sort   tiny   key   color   gen   for   

原文地址:https://www.cnblogs.com/lfdestiny/p/9536843.html

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