-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadixSort.kt
66 lines (54 loc) · 1.46 KB
/
RadixSort.kt
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
package sorting
/**
* radix sort algorithm applies only to integers
*
* worst time: <number of bits of an integer> * n
*
* amount of memory: 2 * n
*/
fun Array<Int>.radixSort() {
val array = this
val array1 = Array(size) { 0 }
val array2 = Array(size) { 0 }
val size = Int.SIZE_BITS
for (radix in 0 until size) {
var size1 = 0
var size2 = 0
for (index in array.indices) {
if (array[index].and(1.shl(radix)) == 0) {
array1[size1++] = array[index]
} else {
array2[size2++] = array[index]
}
}
for (index in 0 until size1) {
array[index] = array1[index]
}
for (index in 0 until size2) {
array[size1 + index] = array2[index]
}
}
}
fun MutableList<Int>.radixSort() {
val list = this
val array1 = MutableList(size) { 0 }
val array2 = MutableList(size) { 0 }
val size = Int.SIZE_BITS
for (radix in 0 until size) {
var size1 = 0
var size2 = 0
for (index in list.indices) {
if (list[index].and(1.shl(radix)) == 0) {
array1[size1++] = list[index]
} else {
array2[size2++] = list[index]
}
}
for (index in 0 until size1) {
list[index] = array1[index]
}
for (index in 0 until size2) {
list[size1 + index] = array2[index]
}
}
}