Created
July 5, 2016 21:17
-
-
Save johnSerrano/b3c996ab1e9673c24862792f8a9203cb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "hashtable.h" | |
| #include <stdio.h> | |
| int print_hashtable(HashTable *ht); | |
| HashTable *ht_create(unsigned int size); | |
| int ht_put(HashTable *hashtable, const char *key, const char *value); | |
| unsigned int hash(const char *key, unsigned int size); | |
| int main(void) { | |
| HashTable *ht = ht_create(5); | |
| ht_put(ht, "One", "Value One"); | |
| ht_put(ht, "Two", "Value Two"); | |
| ht_put(ht, "Three", "Value Three"); | |
| ht_put(ht, "Four", "Value Four"); | |
| ht_put(ht, "Five", "Value Five"); | |
| ht_put(ht, "Six", "Value Six"); | |
| ht_put(ht, "Seven", "Value Seven"); | |
| print_hashtable(ht); | |
| } | |
| int print_hashtable(HashTable *ht) { | |
| int i = 0; | |
| List *listptr; | |
| for ( ; i<ht->size ; i++) { | |
| printf("%d\n", i); | |
| /* traverse list */ | |
| listptr = ht->array[i]; | |
| printf("\t--------\n"); | |
| while (listptr != NULL) { | |
| printf("\tkey: %s\n\tval: %s\n\t--------\n", listptr->key, listptr->value); | |
| listptr = listptr->next; | |
| } | |
| printf("\tNULL\n\t--------\n"); | |
| } | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment