Codigo de pila
Enviado por Inu Dainny Boku • 16 de Noviembre de 2015 • Apuntes • 1.669 Palabras (7 Páginas) • 136 Visitas
#in#include
#include
using namespace std;
struct nodo
{
char dato;
struct nodo * enlace;
};
int main ()
{
typedef struct nodo lista;
lista*inicio=NULL, *auxiliar=NULL;
char resp, elemento;
system("cls");
do
{
cout<<"\nDesea crea un nodo [S/N] "<
resp=getche();
resp=toupper(resp);
if(resp=='S')
{
cout<<"\nDa el dato"<
elemento=getche();
if(inicio==NULL)
{
inicio=new lista;
if(inicio!=NULL)
{
inicio->dato=elemento;
inicio->enlace=NULL;
}
}
}
else
{
auxiliar=new lista;
cout<
if(auxiliar!=NULL)
{
auxiliar->dato=elemento;
auxiliar->enlace=inicio;
inicio=auxiliar;
}
}
}while(resp=='S');
if(inicio==NULL)
{
cout<<"\nLista vacia "<
...