-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathradix_sort.cpp
66 lines (49 loc) · 1.21 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
66
// Radix Sort using cpp :D
/*
Radix sort is a non-comparative sorting algorithm.
Is this algorithm faster?
"It has been shown in some benchmarks to be faster than other more general-purpose sorting algorithms,
sometimes 50% to three times faster"
Worst case: n*k/d
Average case: n*k/d
*/
#include <bits/stdc++.h>
using namespace std;
int Find_max(int arr[], int n)
{
int m = arr[0];
for (int i = 1; i < n; i++)
if (arr[i] > m) m = arr[i];
return m;
}
void counting_sort(int arr[], int n, int exp)
{
int out_put[n];
int i, count[10] = { 0 };
for (i = 0; i < n; i++) count[(arr[i] / exp) % 10]++;
for (i = 1; i < 10; i++) count[i] += count[i - 1];
for (i = n - 1; i >= 0; i--)
{
out_put[count[(arr[i] / exp) % 10] - 1] = arr[i];
count[(arr[i] / exp) % 10]--;
}
for (i = 0; i < n; i++) arr[i] = out_put[i];
}
void Radix_sort(int arr[], int n)
{
int m = Find_max(arr, n);
for (int exp = 1; m / exp > 0; exp *= 10)
counting_sort(arr, n, exp);
}
void printing(int arr[], int n)
{
for (int i = 0; i < n; i++)cout << arr[i] << " ";
}
int main()
{
int arr[] = { 55, 3, 17, 24, 1, 37, 11, 52, 13, 44, 38, 4, 9, 21 };
int n = sizeof(arr) / sizeof(arr[0]);
Radix_sort(arr, n);
printing(arr, n);
return 0;
}