From 256d5bbdc22be99e50b20a15db77fc3eb88822cc Mon Sep 17 00:00:00 2001 From: Eshank Tyagi <111590631+mreshank@users.noreply.github.com> Date: Sun, 29 Oct 2023 12:46:12 +0530 Subject: [PATCH] Create Counting Sort .cpp I've implemented the Counting Sort In C++ using Arrays for simplicity. If you believe it could be merged, please do so ... --- data structures/cpp/Counting Sort .cpp | 77 ++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 data structures/cpp/Counting Sort .cpp diff --git a/data structures/cpp/Counting Sort .cpp b/data structures/cpp/Counting Sort .cpp new file mode 100644 index 0000000..db53929 --- /dev/null +++ b/data structures/cpp/Counting Sort .cpp @@ -0,0 +1,77 @@ +// Counting sort in C++ programming + +#include +using namespace std; + +void countSort(int array[], int size) +{ + + /* The size of count must be at least the (max+1) but + we cannot assign declare it as int count(max+1) in C++ as + it does not support dynamic memory allocation. + So, its size is provided statically. */ + + int output[1000000]; // taking the numerical limit to be 10^6 + int count[1000000]; // taking the numerical limit to be 10^6 + int max = array[0]; + + // Find the largest element of the array + for (int i = 1; i < size; i++) + { + if (array[i] > max) + max = array[i]; + } + + // Initialize count array with all zeros. + for (int i = 0; i <= max; ++i) + count[i] = 0; + + // Store the count of each element + for (int i = 0; i < size; i++) + count[array[i]]++; + + // Store the cummulative count of each array + for (int i = 1; i <= max; i++) + count[i] += count[i - 1]; + + // Find the index of each element of the original array in count array, and + // place the elements in output array + for (int i = size - 1; i >= 0; i--) + { + output[count[array[i]] - 1] = array[i]; + count[array[i]]--; + } + + // Copy the sorted elements into original array + for (int i = 0; i < size; i++) + array[i] = output[i]; + +} + +// Function to print an array +void printArray(int array[], int size) +{ + + for (int i = 0; i < size; i++) + cout << array[i] << " "; + + cout << endl; + +} + +// Driver code +int main() +{ + // Creating a Sample Array in C++ + int array[] = {4, 32, 2, 83, 3, 321, 145556}; + + // Finding the size of the array + int n = sizeof(array) / sizeof(array[0]); + + // Calling the Counting Sort Algorithm function + countSort(array, n); + + // Printing the Sorted Array + printArray(array, n); + +}