forked from StefanoChiodino/c
-
Notifications
You must be signed in to change notification settings - Fork 0
/
albero binario.cpp
92 lines (86 loc) · 2.35 KB
/
albero binario.cpp
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
#include <stdio.h>
#include <stdlib.h>
typedef struct nodo{
int dato;
struct nodo *sx,*dx;
}*albero;
albero genera(albero tmp,int n){
int sin,des;
tmp->dato=n;
printf("\nInserire il dato per il figlio sinistro di %d: ",n);
scanf("%d",&sin);
if(sin){
tmp->sx=(albero)malloc(sizeof(struct nodo));
genera(tmp->sx,sin);
}
else
tmp->sx=NULL;
printf("\nInserire il dato per il figlio destro di %d: ",n);
scanf("%d",&des);
if(des){
tmp->dx=(albero)malloc(sizeof(struct nodo));
genera(tmp->dx,des);
}
else
tmp->dx=NULL;
return tmp;
}
void inorder(albero tmp){
if(tmp){
inorder(tmp->sx);
printf("%d ",tmp->dato);
inorder(tmp->dx);
}
}
void preorder(albero tmp){
if(tmp){
printf("%d ",tmp->dato);
preorder(tmp->sx);
preorder(tmp->dx);
}
}
void postorder(albero tmp){
if(tmp){
postorder(tmp->sx);
postorder(tmp->dx);
printf("%d ",tmp->dato);
}
}
void visita(albero radice){
char scelta;
do{
printf("\n\nChe tipo di visita si vuole effettuare?\n\n"
"1)inorder\n"
"2)preorder\n"
"3)postorder\n"
"0)esci\n");
scanf("%d",&scelta);
printf("\n");
switch(scelta){
case 1:
inorder(radice);
break;
case 2:
preorder(radice);
break;
case 3:
postorder(radice);
break;
case 0:
break;
default:
printf("Scelta sbagliata!");
}
}while(scelta);
}
int main(){
albero radice=NULL;
int n;
printf("Creazione di un albero binario\n\n"
"Per non creare un nodo digitare 0\n"
"Immettere il primo dato: ");
scanf("%d",&n);
radice=(albero)malloc(sizeof(struct nodo));
genera(radice,n);
visita(radice);
}