-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathradixSort.go
52 lines (40 loc) · 1.04 KB
/
radixSort.go
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
package radixSort
import (
"github.com/brotherpowers/go-algorithms/Search/minmax"
)
const radix = 10
func countSort(arr []int, exp int) []int {
length := len(arr)
if length <= 1 {
return arr
}
// Create an array to store the count of each element
count := make([]int, radix)
// Array to hold the sorted values
output := make([]int, length)
for i := 0; i < length; i++ {
count[(arr[i]/exp)%radix] += 1
}
// Change count[i] so that count[i] now contains
// actual position of this digit in output[]
for i := 1; i < radix; i++ {
count[i] += count[i-1]
}
// Place the element in the final array as per the number of elements before it
for i := length - 1; i >= 0; i-- {
output[count[(arr[i]/exp)%radix]-1] = arr[i]
count[(arr[i]/exp)%radix]--
}
return output
}
func Sort(arr []int) {
// Find the maximum number to know number of digits
max := minmax.Maximum(arr) + 1
length := len(arr)
for exp := 1; max/exp > 0; exp *= radix {
output := countSort(arr, exp)
for i := 0; i < length; i++ {
arr[i] = output[i]
}
}
}