[bglug] C++ e lista
Flavio Castelli
flavio@castelli.name
Gio 15 Gen 2009 09:31:29 CET
On Thursday 15 January 2009 09:06:55 Roberto Santini wrote:
> Questo quello che avevo scritto:
> while (testaListaEntrate!=NULL){
>
> current=testaListaEntrate;
>
> testaListaEntrate=current->next;
>
> delete current;
>
> testaListaEntrate=testaListaEntrate->next;
// come mai? ^^^^^
>
> }
io farei:
while (testaListaEntrante != NULL) {
toDelete = testaListaEntrante;
testaListaEntrate= testaListaEntrante->next;
delete toDelete;
}
ciao
Flavio
Maggiori informazioni sulla lista
bglug