Update cv6/a_station.c
This commit is contained in:
parent
5929e3a69f
commit
4c1c1d4842
@ -16,22 +16,15 @@ int select_track(struct station* station, const char* target)
|
|||||||
char t=0;
|
char t=0;
|
||||||
while(target[i]!=0)
|
while(target[i]!=0)
|
||||||
{
|
{
|
||||||
t+=target[i]; // або інша хеш функція
|
t+=target[i];
|
||||||
}
|
}
|
||||||
if(t<0) {t=-t;}
|
if(t<0) {t=-t;}
|
||||||
|
|
||||||
i=t%10; //інд в хеш таб
|
i=t%10;
|
||||||
|
|
||||||
// if(station->tracks[i]==NULL)
|
|
||||||
// {
|
|
||||||
// ++
|
return i;
|
||||||
// }
|
|
||||||
// else
|
|
||||||
// {
|
|
||||||
// оновимо
|
|
||||||
// }
|
|
||||||
//return ???;
|
|
||||||
return i;//target[0]%10;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void add_target_capacity(struct station* station,const char* target, int capacity)
|
void add_target_capacity(struct station* station,const char* target, int capacity)
|
||||||
|
Loading…
Reference in New Issue
Block a user