hashtable.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "hashtable.h" /* --------------------- */ /* Linked List Functions */ /* --------------------- */ static List * ListInit(){ List *list = (List *)malloc(sizeof(List)); return list; } static bool ListIsEmpty(const List *plist){ return plist->first == NULL; } static bool ListAppend(void * data, List *plist){ Node *newNode = (Node *)malloc(sizeof(Node)); if (newNode == NULL){ fprintf(stderr, "Error: No Memory Available"); return false; } if(ListIsEmpty(plist)){ newNode->data = data; newNode->next = NULL; plist->first=newNode; plist->length++; return true; } Node *temp; temp = plist->first; while(temp->next != NULL) temp = temp->next; newNode->data = data; newNode->next = NULL; temp->next=newNode; plist->length++; return true; } static bool ListInsertFront(void * data, List *plist){ Node *newNode = (Node *)malloc(sizeof(Node)); if(newNode == NULL){ fprintf(stderr, "Error: No Memory Available"); return false; } else{ newNode->data = data; newNode->next = plist->first; plist->first = newNode; plist->length++; return true; } } static bool ListInsert(void * data, int pos, List *plist){ if(pos >= plist->length || pos < 0){ fprintf(stderr, LL_Err_OUTOFBOUNDS); return false; } if(pos==0) return ListInsertFront(data, plist); int c=0; Node *temp = plist->first; /* `temp` will point to the node that is just before the position `pos` * where the new node has to be added */ while(c < pos-1){ temp = temp->next; c++; } Node *newNode = (Node *)malloc(sizeof(Node)); if(newNode == NULL){ fprintf(stderr, "Error: No Memory Available"); return false; } else{ newNode->data = data; newNode->next = temp->next; temp->next=newNode; plist->length++; return true; } } static void * ListGetItem(int pos, List *plist){ if(pos >= plist->length || pos < 0){ fprintf(stderr, LL_Err_OUTOFBOUNDS); exit(1); } int c=0; Node *temp = plist->first; while(c < pos){ temp = temp->next; c++; } return temp->data; } static void * ListPopItem(int pos, List *plist){ if(pos >= plist->length || pos < 0){ fprintf(stderr, LL_Err_OUTOFBOUNDS); exit(1); } int c=0; Node *prevNode = plist->first; while(c < pos-1){ prevNode = prevNode->next; c++; } Node *currNode = prevNode->next; Node *nextNode = currNode->next; prevNode->next = nextNode; void *data = currNode->data; free(currNode); plist->length--; return data; } /* ------------------- */ /* HashTable Functions */ /* ------------------- */ static unsigned long hash_function(char *str, size_t capacity){ unsigned long hash = 0; int c; char *strcpy = str; while(c = *strcpy++) hash +=c; return hash%capacity; } HashTable * createHashTable(size_t capacity){ HashTable *hashtable = (HashTable *)malloc(sizeof(HashTable)); List **lists = (List **)malloc(sizeof(List*)*capacity); for(int i=0; i<capacity; i++) lists[i] = ListInit(); hashtable->lists = lists; hashtable->capacity = capacity; return hashtable; } bool HashTableInsert(char *key, void *data, HashTable *hashtable){ unsigned long hash = hash_function(key, hashtable->capacity); List *list = hashtable->lists[hash]; if(ListIsEmpty(list)){ elem_t *elem = (elem_t *)malloc(sizeof(elem_t)); elem->key = key; elem->value = data; ListAppend(elem, list); hashtable->length++; return true; } else{ elem_t *elem_tmp; for(int i=0; i<list->length; i++){ elem_tmp = (elem_t *)ListGetItem(i, list); if (strcmp(key ,elem_tmp->key)==0) return false;//key already exists } elem_t *elem = (elem_t *)malloc(sizeof(elem_t)); elem->key = key; elem->value = data; ListAppend(elem, list); hashtable->length++; return true; } } void * HashTableGet(char *key, HashTable *hashtable){ unsigned long hash = hash_function(key, hashtable->capacity); List *list = hashtable->lists[hash]; if (ListIsEmpty(list)) return NULL; else if(list->length > 1){ elem_t *elem_tmp; for(int i=0; i<list->length; i++){ elem_tmp = ListGetItem(i, list); if(strcmp(key, elem_tmp->key)==0){ return elem_tmp->value; } } return NULL; } else{// if only one element in the list elem_t *elem = ListGetItem(0, list); return elem->value; } }