-
Notifications
You must be signed in to change notification settings - Fork 1
/
cadaniveldaarvore.c
80 lines (64 loc) · 1.25 KB
/
cadaniveldaarvore.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
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
typedef struct arvore no;
struct arvore{
int valor;
no* esquerda;
no* direita;
};
no* criar_arvore(int item, no* esq, no* dir)
{
no *novo_no = (no*)malloc(sizeof(no));
novo_no->valor = item;
novo_no->esquerda = esq;
novo_no->direita = dir;
return novo_no;
}
void print_preorder(no * tree) {
if (tree)
{
printf(" %d ",tree->valor);
print_preorder(tree->esquerda);
print_preorder(tree->direita);
}
}
int main()
{
int n;
scanf("%d", &n);
no **nos=(no**)malloc(sizeof(no*)*n);
no* raiz=NULL;
int i;
for ( i = 0; i < n; i++)
{
nos[i]=NULL;
}
int valorno, filhod, filhoe;
for ( i = 0; i < n; i++)
{
scanf("%d%d%d", &valorno, &filhoe, &filhod);
if(filhoe==-1 && filhoe==-1)
{
raiz=criar_arvore(valorno, NULL, NULL);
}
else if(filhoe==-1)
{
raiz=criar_arvore(valorno, NULL, nos[filhod]);
}
else if(filhod==-1)
{
raiz=criar_arvore(valorno, nos[filhoe], NULL);
}
else
{
raiz=criar_arvore(valorno, nos[filhoe], nos[filhod]);
}
nos[i]=raiz;
nos[i]->esquerda=nos[filhoe];
nos[i]->direita= nos[filhod];
}
print_preorder(raiz);
return 0;
}