usaa24/cv4/a_train.c

56 lines
1.2 KiB
C
Raw Normal View History

2024-10-24 16:53:07 +00:00
#include "a_train.h"
#include <stdio.h>
2024-10-24 17:05:08 +00:00
#include <stdlib.h>
#include <string.h>
2024-10-24 16:53:07 +00:00
2024-10-24 17:05:08 +00:00
struct car* add_car(struct car* first, const char* target) {
// Vytvorenie noveho vozna
struct car* new_car = (struct car*)malloc(sizeof(struct car));
if (new_car == NULL) {
printf("Chyba: Nepodarilo sa alokovať pamäť pre nový vozeň.\n");
return first;
}
// Inicializacia hodnot
strncpy(new_car->value, target, SIZE);
new_car->next = NULL;
// Ak vlak neexistuje, novy vozen sa stane prvym
if (first == NULL) {
return new_car;
}
// Najdenie posledneho vozna
struct car* temp = first;
while (temp->next != NULL) {
temp = temp->next;
}
// Pridanie noveho vozna na koniec
temp->next = new_car;
return first;
2024-10-24 16:53:07 +00:00
}
void print_train(struct car* first) {
2024-10-24 17:10:30 +00:00
if (first == NULL) {
printf("Vlak je prazdny.\n");
return;
}
struct car* temp = first;
while (temp != NULL) {
printf("Cielova stanica: %s\n", temp->value);
temp = temp->next;
}
2024-10-24 16:53:07 +00:00
}
void cancel_train(struct car* first) {
}
struct car* clear_train(struct car* first, const char* target) {
return NULL;
}