-
Notifications
You must be signed in to change notification settings - Fork 1
/
provap2comlista.c
89 lines (73 loc) · 1.28 KB
/
provap2comlista.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
#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;
};
void print_preorder(no * tree) {
if (tree)
{
printf(" %d ",tree->valor);
print_preorder(tree->esquerda);
print_preorder(tree->direita);
}
}
no* criar_arvore(int n, int matriz[n][2], int x, int cont)
{
no * novo;
int aux=x;
novo=malloc(sizeof(no));
novo->valor=cont;
if(x==-1)
{
return NULL;
}
x=matriz[x][0];
novo->esquerda=criar_arvore(n, matriz, x, cont+1);
x=matriz[aux][1];
novo->direita=criar_arvore(n, matriz, x, cont+1);
return novo;
}
int tam(no * tree)
{
int max;
if (tree)
{
int esq= tam(tree->esquerda);
int dir=tam(tree->direita);
if(esq>dir)
{
max=esq+1;
return max;
}
else
{
max=dir+1;
return max;
}
}
return 0;
}
int main()
{
int n, i, j;
scanf("%d", &n);
int matriz[n][2];
no *raiz=NULL;
for ( i = 0; i <n ; i++)
{
for ( j = 0; j < 2; j++)
{
scanf("%d", &matriz[i][j]);
}
}
raiz=criar_arvore(n, matriz, 0, 0);
int tamanho;
tamanho=tam(raiz);
return 0;
}