-
Notifications
You must be signed in to change notification settings - Fork 0
/
merge_sort_iteration.c
67 lines (59 loc) · 1.83 KB
/
merge_sort_iteration.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
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
// A função recebe vetores crescentes v[p..q-1]
// e v[q..r-1] e rearranja v[p..r-1] em ordem
// crescente.
static void
intercala (int p, int q, int r, int v[])
{
int i, j, k, *w; // 1
w = malloc ((r-p) * sizeof (int)); // 2
i = p; j = q; // 3
k = 0; // 4
while (i < q && j < r) { // 5
if (v[i] <= v[j]) w[k++] = v[i++]; // 6
else w[k++] = v[j++]; // 7
} // 8
while (i < q) w[k++] = v[i++]; // 9
while (j < r) w[k++] = v[j++]; // 10
for (i = p; i < r; ++i) v[i] = w[i-p]; // 11
free (w); // 12
}
// Esta função rearranja o vetor v[0..n-1]
// em ordem crescente.
void
mergesort_i (int n, int v[])
{
int p, r;
int b = 1;
while (b < n) {
p = 0;
while (p + b < n) {
r = p + 2*b;
if (r > n) r = n;
intercala (p, p+b, r, v);
p = p + 2*b;
}
b = 2*b;
}
}
int main ()
{
int tam = 100000; //tamanho da input ("n")
int vetor[tam];
clock_t start, end; //variavel que representa o numero de iteraçoes do "for"; Obs.: para n = 100000, foi preciso alterar pra long int.
double tempo;
for (int m = 0; m < 10; m++) //realiza as 10 iterações necessárias
{
start = 0; end = 0.0; tempo = 0.0;
srand(rand() % 10000); //reseta a sequencia aleatoria
for (int i = 0; i < tam; i++) //atribui valores aleatorios
vetor[i] = rand() % tam; //ao vetor de entrada
start = clock();
mergesort_i( tam, vetor);
end = clock();
tempo = ((double) end - start) / CLOCKS_PER_SEC;
printf ("%f\n", tempo);
}
}