Ver Mensaje Individual
  #20 (permalink)  
Antiguo 29/07/2013, 19:25
ambigus
 
Fecha de Ingreso: septiembre-2008
Mensajes: 221
Antigüedad: 16 años, 4 meses
Puntos: 1
Pregunta Respuesta: Guia_Listas_Enlazadas - C++

¿Porqué no me funciona? :(

Código C++:
Ver original
  1. void Lsec::eliminarNodo()
  2. {
  3.     nodo *aux,*apunt2;
  4.     char resp;
  5.    
  6.     apunt2=new nodo();
  7.     aux=new nodo();
  8.     aux=inicial;
  9.     cout<<"Entre clave del nodo a eliminar"<<endl;
  10.     cin>>apunt2->dato;
  11.     while(aux->dato!=apunt2->dato)
  12.     {
  13.         aux=aux->sig;
  14.     }
  15.     aux->sig=apunt2->sig;
  16.     delete apunt2;
  17.     cout<<"Listo!!!"<<endl;
  18. }