-
Notifications
You must be signed in to change notification settings - Fork 267
/
MaxRecursive.c
70 lines (55 loc) · 1.3 KB
/
MaxRecursive.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
/*
* Exemplos de funções para achar maior número de um vetor
* As 3 são recursivas porém apenas a MaxDC utiliza divisão e conquista
*/
#include <stdio.h>
#include <stdlib.h>
#define MAX 10
// Maximo usando Divisão e Conquista
int MaxDC(int *vetor, int inicio, int fim) {
int aux1, aux2;
int meio = (inicio + fim) / 2;
if (inicio == fim) {
return vetor[inicio];
}
aux1 = MaxDC(vetor, inicio, meio);
aux2 = MaxDC(vetor, meio + 1, fim);
if (aux1 > aux2) {
return aux1;
} else {
return aux2;
}
}
void max1(int *vetor, int maximo, int indice) {
if (vetor[indice] > maximo) {
maximo = vetor[indice];
}
if (indice < MAX - 1) {
max1(vetor, maximo, indice + 1);
} else {
printf("\n\nMax1: %d\n", maximo);
}
}
int max2(int vetor[], int tamVetor) {
if (tamVetor == 1) {
return vetor[0]; // só tem 1 elemento
} else {
int x = max2(vetor, tamVetor - 1);
if (x > vetor[tamVetor - 1]) {
return x;
} else {
return vetor[tamVetor - 1];
}
}
}
int main() {
int vetor[MAX];
for (int i = 0; i < MAX; ++i) {
vetor[i] = (rand() % 90) + 10; // 10 a 99
printf("%d, ", vetor[i]);
}
max1(vetor, vetor[0], 1);
printf("\nMax2: %d\n", max2(vetor, MAX));
printf("\nMaxDC: %d\n\n", MaxDC(vetor, 0, MAX - 1));
return 0;
}