This commit is contained in:
Maryna Kravtsova 2020-11-05 15:41:59 +01:00
parent 8d777667f6
commit d52508b100

View File

@ -66,21 +66,34 @@ struct car* clear_train(struct car* first, const char* target) {
while(prev->next->next != NULL){
int x = strcmp(first->value, target);
if(x == 0){
first = first->next;
free(prev);
return first;
prev = first->next;
free(first);
return prev;
}
x = strcmp(prev->next->value, target);
if(x == 0){
if(first->next->next == NULL) {
// if(x == 0){
/* if(first->next->next == NULL) {
//struct car* tmp = prev->next;
free(prev->next);
prev->next = NULL;
}
}
}*/
//}
prev = prev->next;
}
if(prev->next->next == NULL) {
int x = strcmp(first->value, target);
if(x == 0){
prev = first->next;
free(first);
return prev;
}
free(prev->next);
prev->next = NULL;
}
return first;
}