Advertisement
Guest User

Untitled

a guest
Dec 18th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1.         int hashed = hash_word(new_node->word);
  2.         node *head = hashtable[hashed];
  3.         new_node->next = head;
  4.         hashtable[hashed] = new_node;
  5.         return true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement