WIP
This commit is contained in:
parent
2ce92e5a29
commit
ae15257aca
@ -12,19 +12,24 @@ struct station* create_station(){
|
||||
void destroy_station(struct station* station){
|
||||
|
||||
for (int i = 0; i < station -> track_count; i++){
|
||||
struct car* temp = station -> tracks[i];
|
||||
struct car* temp = station -> tracks[i]; //docasne ulozim strukturu, nech mam zalohu smerniku
|
||||
while (temp != NULL) {
|
||||
struct car* temp2 = temp;
|
||||
struct car* temp2 = temp; // prehadzujem smernik aby som nevymazal to na com stojim
|
||||
temp = temp -> next;
|
||||
free (temp2);
|
||||
free (temp2); //mazem
|
||||
}
|
||||
}
|
||||
free(station);
|
||||
free(station); //zmazem na koniec to co som na zaciatku dostal
|
||||
|
||||
}
|
||||
|
||||
int select_track(struct station* station, const char* target){
|
||||
return 0;
|
||||
int hash = 0;
|
||||
while (*target) {
|
||||
hash = hash + *target; // vyratam nejake cislo "kolaje" ktore by mohlo byt unikatne pre kazdu lokaciu
|
||||
target++;
|
||||
}
|
||||
return hash % (station -> track_count);
|
||||
}
|
||||
|
||||
void add_target_capacity(struct station* station,const char* target, int capacity){
|
||||
|
||||
Loading…
Reference in New Issue
Block a user