-
Notifications
You must be signed in to change notification settings - Fork 267
/
CountingSort.c
66 lines (53 loc) · 1.59 KB
/
CountingSort.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
#include <stdio.h>
#include <stdlib.h>
// CountingSort - Ordenação por Contagem - Matheus Martins Batista -
// Universidade Federal de Itajuba - 2021
// Necessário encontrar o maior elemento para alocar o vetor auxiliar de
// contagem
int findMax(int *arr, int tam) {
int max = arr[0];
for (int i = 1; i < tam; i++) {
if (arr[i] > max) {
max = arr[i];
}
}
return max;
}
// Ordena os valores presentes em A e armazena em B
void countingSort(int *arrA, int *arrB, int tam) {
// Vetor de contagem terá a frequência que um número aparece no vetor
// deve-se setar 0 para todos os elementos ou usar calloc
int max = findMax(arrA, tam);
int *count = calloc(max + 1, sizeof(int));
// Frequência que determinado valor aparece no vetor
for (int i = 0; i < tam; i++) {
count[arrA[i]]++;
}
// Acumulativo da frequência dos valores menores que um elemento i do vetor
// original (A)
for (int i = 1; i <= max; i++) {
count[i] += count[i - 1];
}
// Percorrer o vetor original com início no último elemento, subtituindo os
// indices nos elementos do vetor count e decrescendo a cada atribuição
for (int i = tam - 1; i >= 0; i--) {
arrB[count[arrA[i]] - 1] = arrA[i];
count[arrA[i]]--;
}
}
int main() {
int *arrA, *arrB;
int tam = 10;
arrA = malloc(tam * sizeof(int));
arrB = calloc(tam, sizeof(int));
// Popular vetor A
srand(48 + tam);
for (int j = 0; j < tam; j++)
arrA[j] = rand() % 100;
countingSort(arrA, arrB, tam);
printf("Vetor ordenado: ");
for (int i = 0; i < tam; i++) {
printf("%d ", arrB[i]);
}
return 0;
}