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

Lo máximo que he logrado :( Y nada :(

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