#include using namespace std; const int rozmiartab = 32; struct Node{ char dane; Node *next; Node *prev; }; int tab[rozmiartab]; void emptytab(){ for(int i = 0; i next = NULL; int index = has(dane); if(tab[index]==0){ tab[index] = newNode; //kolizja }else{ struct Node* temp = tab[index]; while(temp->next){ temp = temp -> next; } temp -> next = newNode; } } void print(){ for(int i = 0; i < rozmiartab; i++){ cout<<(int)i<<". --- "<< tab[i]<