42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
#include "a_station.h"
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
#include <stdlib.h>
|
|
|
|
void print_station(struct station* station){
|
|
// Vypise celu stanicu
|
|
printf("station>>>\n");
|
|
// Prechadza vsetky trate
|
|
for (int i = 0 ; i< station->capacity; i++){
|
|
struct car* start = station->tracks[i];
|
|
struct car* this = start;
|
|
// Prechadza vsetky vozne
|
|
while(this != NULL){
|
|
printf("%s %d -> ",this->value,this->capacity);
|
|
this=this->next;
|
|
}
|
|
printf("NULL\n");
|
|
}
|
|
printf("<<<station\n");
|
|
}
|
|
// Pre overenie ci to ide v poriadku
|
|
void test_station(struct station* station){
|
|
const char* stations[] = {"Presov","Kosice","Banska Bystrica","Banska Stiavnica","Povazska Bystrica","Snina","Humenne","Bratislava","Pezinok","Skalica","Ruzomberok","Bidovce","Michalovce","Poprad","Krompachy","Smizany","Vajkovce","Budimir","Modra","Myslava","Roznava","Gemerska Poloma","Stratena","Dobsina","Michalany","Kostolany"};
|
|
int size=26;
|
|
for (int i = 0; i < 50; i++){
|
|
int s = rand() % size;
|
|
int c = rand() % 20;
|
|
printf("%s %d\n",stations[s],c);
|
|
add_target_capacity(station,stations[s],c);
|
|
print_station(station);
|
|
}
|
|
}
|
|
|
|
int main(){
|
|
srand(time(NULL));
|
|
struct station* station = create_station();
|
|
test_station(station);
|
|
destroy_station(station);
|
|
return 0;
|
|
}
|