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

希尔排序

时间:2020-07-18 15:54:00      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:shel   总数   dex   for   color   index   希尔排序   shellSort   static   

希尔排序是插入排序的升级版

思路其实也大同小异

先对数组进行分组,假设8个数字

定义一个步长,步长设为数组长的的一半,即  arr.length / 2

则最开始步长为   8 / 2 = 4

(下标)04、15、26、37   各位一组进行插入排序比较

第二次步长为 4 / 2 = 2

则0 2 4 6、1 3 5 7 各自为一组进行插入排序

最后步长为1时,整体就是一个组,再进行插入排序

public static int [] shellSort(int [] array){
        //根据array数组的长度,对待排序的数组进行分组,分组的总数等于总长度的一半
        int group = array.length;
        while(group >= 1){
            group /= 2;
            for (int i = group; i < array.length; i++) {
                int shouldSort = array[i];
                int beforeShouldIndex = i - group;
                while (beforeShouldIndex > 0 && shouldSort < array[beforeShouldIndex]){
                    array[beforeShouldIndex + group] = array[beforeShouldIndex];
                    beforeShouldIndex -= group;
                }
                array[beforeShouldIndex + group] = shouldSort;
            }
        }
        return array;
    }

希尔排序

标签:shel   总数   dex   for   color   index   希尔排序   shellSort   static   

原文地址:https://www.cnblogs.com/zzxisgod/p/13335773.html

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