-
Notifications
You must be signed in to change notification settings - Fork 0
/
ArbolBinario1-s.cpp
84 lines (72 loc) · 1.5 KB
/
ArbolBinario1-s.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
#include <iostream>
using namespace std;
struct Nodo{
int Valor;
Nodo *Izq, *Der;
};
typedef struct Nodo *Abinario;
Abinario crearNodo(int x)
{
Abinario nuevoNodo = new(struct Nodo);
nuevoNodo->Valor = x;
nuevoNodo->Izq = NULL;
nuevoNodo->Der = NULL;
return nuevoNodo;
}
void insertar(Abinario &arbol, int x)
{ // si el arbol esta vacio
if(arbol==NULL)
{
arbol = crearNodo(x);
}
else{ // si dato insertado es menor a la raiz
if(x < arbol->Valor)
insertar(arbol->Izq, x);
else // si dato insertado el mayor a la raiz
if (x > arbol->Valor)
insertar(arbol->Der, x);
}
}
void verArbol(Abinario arbol, int n)
{
if(arbol==NULL){
return;
}
else{
verArbol(arbol->Der, n+1);
for(int i=0; i<n; i++){
cout<<" ";
}
cout<< arbol->Valor <<endl;
verArbol(arbol->Izq, n+1);
}
}
void Menu()
{
cout<<"1. Insertar "<<endl;
cout<<"2. Mostrar "<<endl;
cout<<"Ingrese la opción que desea: ";
}
int main()
{
Abinario arbol = NULL;
int Opcion,Valor;
do {
Menu();
cin>>Opcion;
switch(Opcion)
{
case 1:
cout<<"Ingrese valor:";
cin>>Valor;
insertar( arbol, Valor);
break;
case 2:
cout << "\n Mostrando Arbol binario \n";
verArbol( arbol, 0);
break;
case 3:
exit(0);
}
} while (Opcion !=2);
}