希尔排序(Java)

浪子不回头ぞ 提交于 2020-02-17 01:38:35

希尔排序(Shell’s Sort)是插入排序的一种又称“缩小增量排序”(Diminishing Increment Sort),是直接插入排序算法的一种更高效的改进版本。

public static void shellSort(int[] arr){
        int tep = arr.length;//增量每次减半
        while (tep / 2 > 0){
            tep /= 2;
            for (int i = 0; i < tep; i++) {
            	//下面代码就是每组内进行插入排序
                for (int tempIndex = i + tep; tempIndex < arr.length; tempIndex += tep) {
                    int j = tempIndex;
                    int temp = arr[j];
                    while (j - tep >= 0 && temp < arr[j - tep]){
                        arr[j] = arr[j - tep];
                        j -= tep;
                    }
                    arr[j] = temp;
                }
            }
        }
    }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!