2021-11-04 19:08:37 +00:00
|
|
|
#include "a_train.h"
|
|
|
|
#include <stdio.h>
|
2021-11-04 19:12:23 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2021-11-04 19:08:37 +00:00
|
|
|
|
|
|
|
struct car* add_car(struct car* first,const char* target) {
|
2021-11-04 19:12:23 +00:00
|
|
|
struct car* new_car = (struct car*)calloc(1,sizeof(struct car));
|
2021-11-04 19:08:37 +00:00
|
|
|
strcpy(new_car->value, target);
|
|
|
|
new_car->next = NULL;
|
|
|
|
if (first == NULL){
|
|
|
|
first = new_car;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
struct car* temp=first;
|
|
|
|
while(temp->next != NULL){
|
|
|
|
temp = temp->next;
|
|
|
|
}
|
|
|
|
temp->next = new_car;
|
|
|
|
}
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
void print_train(struct car* first) {
|
|
|
|
struct car* this = first;
|
|
|
|
while(this != NULL){
|
|
|
|
printf("%s",this->value);
|
|
|
|
this = this->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void cancel_train(struct car* first) {
|
|
|
|
if (first != NULL){
|
|
|
|
cancel_train(first->next);
|
|
|
|
free(first);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
struct car* clear_train(struct car* first, const char* target) {
|
|
|
|
struct car* this = first;
|
2021-11-04 19:14:54 +00:00
|
|
|
if (this == NULL){
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-11-04 19:32:17 +00:00
|
|
|
/* if (this->next == NULL){
|
2021-11-04 19:17:06 +00:00
|
|
|
if(strcmp(this->value, target) == 0){
|
|
|
|
free(this);
|
|
|
|
return NULL;
|
|
|
|
}else {
|
|
|
|
return first;
|
|
|
|
}
|
2021-11-04 19:33:06 +00:00
|
|
|
}*/
|
2021-11-04 19:08:37 +00:00
|
|
|
while( this->next->next != NULL){
|
2021-11-04 19:20:56 +00:00
|
|
|
if(strcmp(this->next->value, target) == 0){
|
|
|
|
free(this->next);
|
2021-11-04 19:29:11 +00:00
|
|
|
this->next = this->next->next;
|
2021-11-04 19:18:56 +00:00
|
|
|
return first;
|
|
|
|
}
|
|
|
|
else {
|
2021-11-04 19:29:11 +00:00
|
|
|
this = this->next;
|
2021-11-04 19:08:37 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-04 19:29:11 +00:00
|
|
|
return first;
|
2021-11-04 19:08:37 +00:00
|
|
|
}
|