Last active
December 27, 2018 18:35
-
-
Save saifsmailbox98/81f29461c58cb1f612b72b2dcd7a7116 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int getMax(int arr[], int n) | |
{ | |
int mx = arr[0]; | |
for (int i = 1; i < n; i++) | |
if (arr[i] > mx) | |
mx = arr[i]; | |
return mx; | |
} | |
void countSort(int arr[], int n, int exp) | |
{ | |
int output[n]; // output array | |
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--) | |
{ | |
output[count[ (arr[i]/exp)%10 ] - 1] = arr[i]; | |
count[ (arr[i]/exp)%10 ]--; | |
} | |
for (i = 0; i < n; i++) | |
arr[i] = output[i]; | |
} | |
void radixsort(int arr[], int n) | |
{ | |
int m = getMax(arr, n); | |
for (int exp = 1; m/exp > 0; exp *= 10) | |
countSort(arr, n, exp); | |
} | |
int main() | |
{ | |
int arr[] = {170, 45, 75, 90, 802, 24, 2, 66}; | |
int n = sizeof(arr)/sizeof(arr[0]); | |
radixsort(arr, n); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment