-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInsertionSort.kt
More file actions
38 lines (34 loc) · 749 Bytes
/
InsertionSort.kt
File metadata and controls
38 lines (34 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package sorting
/**
* insertion sort algorithm
*
* worst time: n²
* the best time: n
* average time: n²
*
* amount of time: 1
*/
fun <T : Comparable<T>> Array<T>.insertionSort() {
val array = this
for (i in 1 until size) {
val current = array[i]
var j = i - 1
while (j >= 0 && array[j] > current) {
array[j + 1] = array[j]
j--
}
array[j + 1] = current
}
}
fun <T : Comparable<T>> MutableList<T>.insertionSort() {
val list = this
for (i in 1 until size) {
val current = list[i]
var j = i - 1
while (j >= 0 && list[j] > current) {
list[j + 1] = list[j]
j--
}
list[j + 1] = current
}
}