This repository has been archived by the owner on Mar 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrabalho_Ordenacao_Leticia.c
142 lines (117 loc) · 3.21 KB
/
Trabalho_Ordenacao_Leticia.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// Nao se preocupem com isso
#define RED "\x1b[31m"
#define GREEN "\x1b[32m"
#define RESET "\x1b[0m"
//LETÍCIA PEGORARO GARCEZ 18100304
#include <stdio.h>
#include <stdlib.h>
// numTrocas : recebe um vetor e seu tamanho, retorna o numero minimo de trocas necessarias para que o vetor respeito o criterio especificado.
int numTrocas(int * vetor, int tamanho) {
int count =0;
int c,c2,temp,troca;
//Escolhi este algoritmo porque ele já já que a maior parte da manipulação é feita com o valor dos indices e não dos elementos do vetor em si.
//E com a condição para verificar se houve mudança no indice de troca é possível chegar no número minimo de trocas realizadas entre os elementos do vetor.
for (c=0;c<tamanho;c++){
troca = c;
for(c2=c;c2<tamanho;c2++){
if(vetor[c2]<vetor[troca]){
troca = c2;
}
}
if(troca!=c){
temp = vetor[troca];
vetor[troca] = vetor[c];
vetor[c] = temp;
count++;
}
}
/*printf("VETOR -> ");
for(c= 0; c < tamanho;c++){
printf("%d ",vetor[c]);
} */
return count;
}
int main() {
int tamanho, resultado;
int * vetor;
printf("---Testes de Validacao---\n");
printf("1. ");
tamanho = 4;
vetor = (int *) malloc(tamanho * sizeof(int));
vetor[0] = 2;
vetor[1] = 5;
vetor[2] = 3;
vetor[3] = 1;
resultado = numTrocas(vetor, tamanho);
if (resultado == 2) {
printf(GREEN " PASS!\n" RESET);
}
else {
printf(RED " FAIL. %d != 2\n" RESET, resultado);
}
free(vetor);
printf("2. ");
tamanho = 5;
vetor = (int *) malloc(tamanho * sizeof(int));
vetor[0] = 1;
vetor[1] = 2;
vetor[2] = 3;
vetor[3] = 4;
vetor[4] = 4;
resultado = numTrocas(vetor, tamanho);
if (resultado == 0) {
printf(GREEN " PASS!\n" RESET);
}
else {
printf(RED " FAIL. %d != \n" RESET, resultado);
}
free(vetor);
printf("3. ");
tamanho = 12;
vetor = (int *) malloc(tamanho * sizeof(int));
vetor[0] = 17;
vetor[1] = 23;
vetor[2] = 44;
vetor[3] = 11;
vetor[4] = 3;
vetor[5] = 17;
vetor[6] = 31;
vetor[7] = 55;
vetor[8] = 12;
vetor[9] = 91;
vetor[10] = 47;
vetor[11] = 19;
resultado = numTrocas(vetor, tamanho);
if (resultado == 10) {
printf(GREEN " PASS!\n" RESET);
}
else {
printf(RED " FAIL. %d != 10\n" RESET, resultado);
}
free(vetor);
printf("4. ");
tamanho = 27;
vetor = (int *) malloc(tamanho * sizeof(int));
for (int i = 0; i < tamanho; i++) vetor[i] = (i%2 == 0) ? i : tamanho - i;
resultado = numTrocas(vetor, tamanho);
if (resultado == 12) {
printf(GREEN " PASS!\n" RESET);
}
else {
printf(RED " FAIL. %d != 12\n" RESET, resultado);
}
free(vetor);
printf("5. ");
tamanho = 12;
vetor = (int *) malloc(tamanho * sizeof(int));
for (int i = 0; i < tamanho; i++) vetor[i] = (i%2 == 0) ? tamanho - i : i;
resultado = numTrocas(vetor, tamanho);
if (resultado == 9) {
printf(GREEN " PASS!\n" RESET);
}
else {
printf(RED " FAIL. %d != 9\n" RESET, resultado);
}
free(vetor);
return 0;
}