Guest User

Untitled

a guest
May 21st, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. typedef struct entry {
  2. int proximaentry;
  3. KeyType key;
  4. Info info;
  5. struct entry *next;
  6. } Entry;
  7.  
  8. typedef struct hashz{
  9. Entry *HashTable[HASHSIZE];
  10. int primeiraentry;}
Add Comment
Please, Sign In to add comment