-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathradix_sort.cpp
65 lines (51 loc) · 1.17 KB
/
radix_sort.cpp
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
//RADIX SORT IMPLEMENTATION
#include <iostream>
using namespace std;
// A getMax function to get maximum value in a[]
int getMax(int a[], int n)
{
int mx = a[0];
for (int i = 1; i < n; i++)
if (a[i] > mx)
mx = a[i];
return mx;
}
void countSort(int a[], int n, int exp)
{
int output[n];
int i, count[10] = { 0 };
for (i = 0; i < n; i++)
count[(a[i] / exp) % 10]++;
for (i = 1; i < 10; i++)
count[i] += count[i - 1];
for (i = n - 1; i >= 0; i--) {
output[count[(a[i] / exp) % 10] - 1] = a[i];
count[(a[i] / exp) % 10]--;
}
for (i = 0; i < n; i++)
a[i] = output[i];
}
// Radix Sort
void radixsort(int a[], int n)
{
int m = getMax(a, n);
for (int exp = 1; m / exp > 0; exp *= 10)
countSort(a, n, exp);
}
// A print function to print an array
void print(int a[], int n)
{
for (int i = 0; i < n; i++)
cout << a[i] << " ";
}
// Driver Code
int main()
{
int a[] = { 112, 35, 9, 41, 744, 62, 3, 98, 615, 22 };
int n = sizeof(a) / sizeof(a[0]);
radixsort(a, n);
print(a, n);
return 0;
}
// OUTPUT
// 3 9 22 35 41 62 98 112 615 744