1. 程式人生 > 實用技巧 >uwsgi + ngnix + django 筆記

uwsgi + ngnix + django 筆記

希爾排序是插入排序的升級版

思路其實也大同小異

先對陣列進行分組,假設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; }