Skip to content

Commit fe52150

Browse files
authored
Merge pull request kodecocodes#606 from carlosaking/Shell-Sort-Swift4
[Swift 4] Update Shell Sort
2 parents bb3ecc9 + 1df06b2 commit fe52150

File tree

3 files changed

+40
-16
lines changed

3 files changed

+40
-16
lines changed

Shell Sort/README.markdown

+2-16
Original file line numberDiff line numberDiff line change
@@ -117,24 +117,10 @@ Here is an implementation of Shell Sort in Swift:
117117
var arr = [64, 20, 50, 33, 72, 10, 23, -1, 4, 5]
118118
119119
public func shellSort(_ list: inout [Int]) {
120-
121120
var sublistCount = list.count / 2
122-
123121
while sublistCount > 0 {
124-
125-
for index in 0..<list.count {
126-
127-
guard index + sublistCount < list.count else { break }
128-
129-
if list[index] > list[index + sublistCount] {
130-
swap(&list[index], &list[index + sublistCount])
131-
}
132-
133-
guard sublistCount == 1 && index > 0 else { continue }
134-
135-
if list[index - 1] > list[index] {
136-
swap(&list[index - 1], &list[index])
137-
}
122+
for pos in 0..<sublistCount {
123+
insertionSort(&list, start: pos, gap: sublistCount)
138124
}
139125
sublistCount = sublistCount / 2
140126
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
//: Playground - noun: a place where people can play
2+
3+
import UIKit
4+
5+
// last checked with Xcode 9.0b4
6+
#if swift(>=4.0)
7+
print("Hello, Swift 4!")
8+
#endif
9+
10+
public func insertionSort(_ list: inout [Int], start: Int, gap: Int) {
11+
for i in stride(from: (start + gap), to: list.count, by: gap) {
12+
let currentValue = list[i]
13+
var pos = i
14+
while pos >= gap && list[pos - gap] > currentValue {
15+
list[pos] = list[pos - gap]
16+
pos -= gap
17+
}
18+
list[pos] = currentValue
19+
}
20+
}
21+
22+
public func shellSort(_ list: inout [Int]) {
23+
var sublistCount = list.count / 2
24+
while sublistCount > 0 {
25+
for pos in 0..<sublistCount {
26+
insertionSort(&list, start: pos, gap: sublistCount)
27+
}
28+
sublistCount = sublistCount / 2
29+
}
30+
}
31+
32+
var arr = [64, 20, 50, 33, 72, 10, 23, -1, 4, 5]
33+
34+
shellSort(&arr)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<playground version='5.0' target-platform='ios'>
3+
<timeline fileName='timeline.xctimeline'/>
4+
</playground>

0 commit comments

Comments
 (0)