forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Radix_Sort.cpp
71 lines (50 loc) · 1.18 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
67
68
69
70
71
// C++ implementation of Radix Sort
#include <iostream>
using namespace std;
int Max_Element(int array[], int size)
{
int max = array[0];
for(int i = 1; i < size; i++)
if(array[i] > max)
max = array[i];
return max;
}
void Counting_Sort(int array[], int size, int exp)
{
int output[size];
int i, count[10] = {0};
for(i = 0; i < size; i++)
count[(array[i] / exp) % 10]++;
for(i = 1; i < 10; i++)
count[i] += count[i - 1];
for(i = size - 1; i >= 0; i--)
{
output[count[(array[i] / exp) % 10] - 1] = array[i];
count[(array[i] / exp) % 10]--;
}
for(i = 0; i < size; i++)
array[i] = output[i];
}
void Radix_Sort(int array[], int size)
{
int max = Max_Element(array, size);
for(int exp = 1; max / exp > 0; exp *= 10)
Counting_Sort(array, size, exp);
}
void Print_Array(int array[], int size)
{
for(int i = 0; i < size; i++)
cout << array[i] << " ";
cout << endl;
}
int main()
{
int array[] = {170, 45, 75, 90, 802, 24, 2, 66};
int size = 8;
Radix_Sort(array, size);
Print_Array(array, size);
return 0;
}
/* Output
2 24 45 66 75 90 170 802
*/