struct kolejka
void init(struct kolejka **k);
int Empty(struct kolejka *k);
void Push(struct kolejka **k, int x);
int First(struct kolejka *k);
int Last(struct kolejka *k);
int Pop(struct kolejka *k);
void odwroc(struct kolejka *K1, struct kolejka **K2);
struct kolejkaT
void initT(struct kolejkaT **kol);
int EmptyT(struct kolejkaT *kol);
void PushT(struct kolejkaT **kol, int x);
int FirstT(struct kolejkaT *kol);
int LastT(struct kolejkaT *kol);
int PopT(struct kolejkaT *kol);
void odwrocT(struct kolejkaT *K1, struct kolejkaT **K2);
Powrót
Wszelkie prawa zastrzeżone (c) 2001 Tomasz Czwarno - owad (na) czwarno.pl