-
Notifications
You must be signed in to change notification settings - Fork 1
/
insersaoarvorebusca.c
91 lines (72 loc) · 1.35 KB
/
insersaoarvorebusca.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
#include <stdio.h>
#include <stdlib.h>
typedef struct arvore no;
struct arvore{
int valor;
no* esquerda;
no* direita;
};
no* criar_no(int item, no* esquerda, no* direita)
{
no* novo_no=malloc(sizeof(no));
novo_no->valor=item;
novo_no->esquerda=esquerda;
novo_no->direita=direita;
return novo_no;
}
/* no* inserir_direita(no* raiz, int item)
{
raiz->direita=criar_no(item);
return raiz->direita;
}
no* inserir_esquerda(no* raiz, int item)
{
raiz->esquerda=criar_no(item);
return raiz->esquerda;
}*/
void print_inorder(no * tree) {
if (tree)
{
print_inorder(tree->esquerda);
printf(" %d ",tree->valor);
print_inorder(tree->direita);
}
}
void print_preorder(no * tree) {
if (tree)
{
printf("(%d ",tree->valor);
print_preorder(tree->esquerda);
print_preorder(tree->direita);
printf(")");
}
else
{
printf("()");
}
}
no* add(no *bt, int item)
{
if (bt == NULL) {
bt = criar_no(item, NULL, NULL);
} else if (bt->valor > item) {
bt->esquerda = add(bt->esquerda, item);
} else {
bt->esquerda = add(bt->direita, item);
}
return bt;
}
int main()
{
struct arvore *root = NULL;
int n;
while (scanf("%d", &n)!=EOF)
{
printf("----\n");
printf("Adicionando %d\n", n);
root=add(root, n);
print_preorder(root);
}
printf("----\n");
printf("\n");
}