-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path105-radix_sort.c
83 lines (69 loc) · 1.74 KB
/
105-radix_sort.c
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
#include "sort.h"
int gett_max(int *aray, int size);
void radix_count_sort(int *aray, size_t size, int sig, int *buff);
void radix_sort(int *aray, size_t size);
/**
* gett_max - Get the maximum value in an aray of integers.
* @aray: aray of integers.
* @size: size of the aray.
*
* Return: The maximum integer in the aray.
*/
int gett_max(int *aray, int size)
{
int max, x;
for (max = aray[0], x = 1; x < size; x++)
{
if (aray[x] > max)
max = aray[x];
}
return (max);
}
/**
* radix_count_sort - Sort the significant digits of an aray of integers
* @aray: An aray of integers.
* @size: The size of the aray.
* @sig: The significant digit to sort on.
* @buff: A buffer to store the sorted aray.
*/
void radix_count_sort(int *aray, size_t size, int sig, int *buff)
{
int cont[10] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
size_t i;
for (i = 0; i < size; i++)
cont[(aray[i] / sig) % 10] += 1;
for (i = 0; i < 10; i++)
cont[i] += cont[i - 1];
for (i = size - 1; (int)i >= 0; i--)
{
buff[cont[(aray[i] / sig) % 10] - 1] = aray[i];
cont[(aray[i] / sig) % 10] -= 1;
}
for (i = 0; i < size; i++)
aray[i] = buff[i];
}
/**
* radix_sort - Sort an aray of integers in ascending
* order using the radix sort algorithm.
* @aray: An aray of integers.
* @size: The size of the aray.
*
* Description: Implements the LSD radix sort algorithm. Prints
* the aray after each significant digit increase.
*/
void radix_sort(int *aray, size_t size)
{
int max, sig, *buff;
if (aray == NULL || size < 2)
return;
buff = malloc(sizeof(int) * size);
if (buff == NULL)
return;
max = gett_max(aray, size);
for (sig = 1; max / sig > 0; sig *= 10)
{
radix_count_sort(aray, size, sig, buff);
print_array(aray, size);
}
free(buff);
}