-
Notifications
You must be signed in to change notification settings - Fork 1
/
asdqw.c
126 lines (107 loc) · 2.06 KB
/
asdqw.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#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][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 procura(no * tree, int level, int * max, int* mim, int procurado, int i) {
if (tree)
{
if(level==procurado)
{
if(tree->valor>max[procurado])
{
max[procurado]=tree->valor;
}
if(tree->valor<mim[procurado])
{
mim[procurado]=tree->valor;
}
}
procura(tree->esquerda, level+1, max, mim, procurado, i);
procura(tree->direita, level+1,max, mim, procurado, i);
}
}
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][3];
no *raiz=NULL;
for ( i = 0; i <n ; i++)
{
for ( j = 0; j < 3; j++)
{
scanf("%d", &matriz[i][j]);
}
}
int max[100];
int mim[100];
for ( i = 0; i <= 30; i++)
{
max[i]=INT_MIN;
}
for ( i = 0; i <= 30; i++)
{
mim[i]=INT_MAX;
}
raiz=criar_arvore(n, matriz, 0);
int tamanho;
tamanho=tam(raiz);
for (i = 1; i <= tamanho; i++)
{
printf("Nivel %d: ", i);
procura(raiz, 1, max, mim, i, 0);
printf("Maior = %d, Menor = %d\n", max[i], mim[i]);
}
return 0;
}