forked from Jack-Lee-Hiter/AlgorithmsByPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShellSort.py
More file actions
21 lines (18 loc) · 680 Bytes
/
ShellSort.py
File metadata and controls
21 lines (18 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# python实现希尔排序
def shellSort(alist):
sublistcount= len(alist)//2
while sublistcount > 0:
for startposition in range(sublistcount):
gapInsertionSort(alist, startposition, sublistcount)
sublistcount = sublistcount//2
return alist
def gapInsertionSort(alist, start, gap):
for i in range(start+gap, len(alist), gap):
currentValue = alist[i]
position = i
while position >= gap and alist[position-gap] > currentValue:
alist[position] = alist[position-gap]
position = position-gap
alist[position] = currentValue
alist = [54,26,93,17,77,31,44,55,20]
print(shellSort(alist))