-
Notifications
You must be signed in to change notification settings - Fork 1
/
arvore_matriz.c
105 lines (88 loc) · 1.62 KB
/
arvore_matriz.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#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(" ");
printf(" ( %d ",tree->valor);
print_preorder(tree->esquerda);
print_preorder(tree->direita);
printf(") ");
}
else
{
printf(" () ");
}
}
no* criar_arvore(int n, int matriz[n][3], int x)
{
no * novo;
int aux=x;
if(x==-1)
{
return NULL;
}
novo=malloc(sizeof(no));
novo->valor=matriz[x][0];
x=matriz[x][1];
novo->esquerda=criar_arvore(n, matriz, x);
x=matriz[aux][2];
novo->direita=criar_arvore(n, matriz, x);
return novo;
}
void navegar(no* arvore, int *pais, int i)
{
if(arvore)
{
if(arvore->direita->direita==NULL && arvore->direita->esquerda==NULL && arvore->esquerda->esquerda==NULL && arvore->esquerda->direita==NULL)
{
pais[i]=arvore->valor;
}
navegar(arvore->direita, pais, i+1);
navegar(arvore->esquerda, pais, i+1);
}
return;
}
int main()
{
int n, i, j, contm;
scanf("%d", &n);
int pais[n];
for ( i = 0; i < n; i++)
{
pais[i]=INT_MAX;
}
int matriz[n][3];
no *arvore=NULL;
for ( i = 0; i <n ; i++)
{
for ( j = 0; j < 3; j++)
{
matriz[i][0]=contm;
}
contm++;
}
for ( i = 0; i <n ; i++)
{
for ( j = 0; j < 2; j++)
{
scanf("%d", &matriz[i][j+1]);
}
}
arvore=criar_arvore(n, matriz, 0);
navegar(arvore, &pais, 0);
for ( i = 0; i < n; i++)
{
printf("%d\n", pais);
}
return 0;
}