Search
 
SCRIPT & CODE EXAMPLE
 

CPP

count sort algorithm

// Counting sort in C++ programming

#include <iostream>
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[10];
  int count[10];
  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() {
  int array[] = {4, 2, 2, 8, 3, 3, 1};
  int n = sizeof(array) / sizeof(array[0]);
  countSort(array, n);
  printArray(array, n);
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ changing string to double 
Cpp :: initialize a vector to 0 
Cpp :: how to create a c++ templeate 
Cpp :: inheritance example in C plus plus 
Cpp :: string number to integer number C++ 
Cpp :: cpp linked list 
Cpp :: constructor syntax in c++ 
Cpp :: data types in c++ 
Cpp :: c++ find index of all occurrences in string 
Cpp :: how to input in cpp 
Cpp :: cyclic array rotation in cpp 
Cpp :: convert wchar_t to to multibyte 
Cpp :: clear previous terminal output c++ 
Cpp :: loop execution decending order in c 
Cpp :: print reverse number 
Cpp :: how to make loop in c++ 
Cpp :: creating node in c++ 
Cpp :: how to use for c++ 
Cpp :: Ninja c++ 
Cpp :: iomanip header file in c++ 
Cpp :: C++ program to print all possible substrings of a given string 
Cpp :: what is the time complexitry of std::sort 
Cpp :: right shift in c++ 
Cpp :: copy vector c++ 
Cpp :: ? in cpp 
Cpp :: c++ comment 
Cpp :: cpp compare strings 
Cpp :: c++ method name 
Cpp :: how to get characters through their ascii value in c++ 
Cpp :: top array data structure questions in inteviews 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =