Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3.  
  4. typedef struct element Element;
  5.  
  6. typedef struct hashTable Hashtable;
  7.  
  8. int hash_function(int key);
  9.  
  10. Hashtable* create_hash_table();
  11.  
  12. void put(Hashtable *ht, int key, int value);
  13.  
  14. int get(Hashtable *ht, int key);
  15.  
  16. void Remove(Hashtable *ht, int key);
  17.  
  18. int contains_key(Hashtable *ht, int key);
  19.  
  20. void print_hash_table(Hashtable *ht);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement