-
Notifications
You must be signed in to change notification settings - Fork 1
/
acheop1.c
87 lines (72 loc) · 1.25 KB
/
acheop1.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
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <limits.h>
typedef struct arvore no;
struct arvore{
int valor;
no* esquerda;
no* direita;
};
no* criar_no(int item)
{
no* novo_no=malloc(sizeof(no));
novo_no->valor=item;
novo_no->direita=NULL;
novo_no->esquerda=NULL;
return novo_no;
}
void print_preorder(no * tree) {
if (tree)
{
printf(" %d ",tree->valor);
print_preorder(tree->esquerda);
print_preorder(tree->direita);
}
}
int direita(int i)
{
return (i*2)+1;
}
int esquerda(int i)
{
return (i*2);
}
int maior(int x,int y)
{
return x >= y ? x : y;
}
int p(no * arvore)
{
if(arvore->direita==NULL && arvore->esquerda==NULL)
{
return arvore->valor;
}
else
{
return maior(arvore->valor*p(arvore->direita), arvore->valor*p(arvore->esquerda) );
}
}
int main()
{
int i=1, aux, h, array[1000];
no* nos[1000];
scanf("%d", &h);
printf("%d\n", h);
while (scanf("%d", &array[i]) != EOF)
{
nos[i] = criar_no(array[i]);
i++;
}
for ( aux = 1; aux <= i; aux++)
{
if(nos[aux]!=NULL)
{
nos[aux]->direita=nos[direita(aux)];
nos[aux]->esquerda=nos[esquerda(aux)];
}
}
int resp=p(nos[1]);
printf("%d", resp);
}