-
Notifications
You must be signed in to change notification settings - Fork 0
/
Counting_Sort.cpp
84 lines (64 loc) · 1.82 KB
/
Counting_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
72
73
74
75
76
77
78
79
80
81
82
83
84
// C++ implementation of Counting Sort
#include <iostream>
using namespace std;
// Function that sort the given input
void counting_sort(int input[], int n)
{
int output[n]; // The output will have sorted input array
int max = input[0];
int min = input[0];
for(int i = 1; i < n; i++)
{
if(input[i] > max)
max = input[i]; // Maximum value in array
else if(input[i] < min)
min = input[i]; // Minimum value in array
}
int k = max - min + 1; // Size of count array
int count_array[k]; // Create a count_array to store count of each individual input value
fill_n(count_array, k, 0); // Initialize count_array elements as zero
for(int i = 0; i < n; i++)
count_array[input[i] - min]++; // Store count of each individual input value
/* Change count_array so that count_array now contains actual
position of input values in output array */
for(int i = 1; i < k; i++)
count_array[i] += count_array[i - 1];
// Populate output array using count_array and input array
for(int i = 0; i < n; i++)
{
output[count_array[input[i] - min] - 1] = input[i];
count_array[input[i] - min]--;
}
for(int i = 0; i < n; i++)
input[i] = output[i]; // Copy the output array to input, so that input now contains sorted values
}
// Driver program to test above function
int main()
{
int n, i;
cout<<"Enter number of elements in your array: ";
cin>>n;
int input[n];
cout<<"Enter your array: ";
for (i = 0; i < n; i++)
{
cin>>input[i];
}
counting_sort(input, n);
cout<<"Sorted Array : ";
for (i = 0; i < n; i++)
cout<<input[i]<<" ";
return 0;
}
/* Enter number of elements in your array: 9
Enter your array: 1
5
2
7
3
4
4
1
5
Sorted Array : 1 1 2 3 4 4 5 5 7
*/