Update cv6/a_station.c

This commit is contained in:
Yurii Yakovenko 2024-11-06 21:05:21 +00:00
parent 5929e3a69f
commit 4c1c1d4842

View File

@ -16,22 +16,15 @@ int select_track(struct station* station, const char* target)
char t=0;
while(target[i]!=0)
{
t+=target[i]; // або інша хеш функція
t+=target[i];
}
if(t<0) {t=-t;}
i=t%10; //інд в хеш таб
i=t%10;
// if(station->tracks[i]==NULL)
// {
// ++
// }
// else
// {
// оновимо
// }
//return ???;
return i;//target[0]%10;
return i;
}
void add_target_capacity(struct station* station,const char* target, int capacity)