JavaScript:实现shellSort希尔排序算法 export function shellSort (items) { let interval = 1 while (interval < items.length / 3)