-
Notifications
You must be signed in to change notification settings - Fork 0
/
dictionary.c
448 lines (360 loc) · 9.5 KB
/
dictionary.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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
#include <ctype.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#include <unistd.h>
#include "dictionary.h"
char * input_string()
{
char buff[BUFF];
char * input = NULL;
if (fgets(buff, BUFF, stdin))
{
buff[strcspn(buff, "\n")] = 0;
input = (char *) malloc(strlen(buff)+1);
if (!input) exit(1);
strcpy(input, buff);
return input;
}
return "Invalid input";
}
entry_t * new_entry(char * key, char * value)
{
entry_t * entry = NULL;
entry = (entry_t *)malloc(sizeof(entry_t));
if (!entry) exit(1);
char key_a[LENGTH];
strcpy(key_a, key);
entry->key = (char *)malloc(strlen(key_a)+1);
if (!entry->key) exit(1);
strcpy(entry->key, key_a);
char value_a[LENGTH];
strcpy(value_a, value);
entry->value = (char *)malloc(strlen(value_a)+1);
if (!entry->value) exit(1);
strcpy(entry->value, value_a);
entry->next = NULL;
return entry;
}
entry_t * prompt(hash_t * set)
{
entry_t * prompt = NULL;
entry_t * cursor = NULL;
for (int i = 0; i < set->size; i++)
{
cursor = set->table[i];
if (cursor)
{
printf("%s -> ", cursor->key);
prompt = new_entry(cursor->key, cursor->value);
delete_kv_pair(set, cursor->key);
break;
}
}
return prompt;
}
hash_t * initialize_hashtable(int size)
{
hash_t * hashtable = NULL;
hashtable = (hash_t *)malloc(sizeof(hash_t));
if (!hashtable) exit(1);
hashtable->size = size;
hashtable->table = (entry_t **)malloc(sizeof(entry_t *) * hashtable->size);
if (!hashtable->table) exit(1);
for(int i = 0; i < hashtable->size; i++)
{
hashtable->table[i] = NULL;
}
return hashtable;
}
int get_command(void)
{
int command;
char * buff = NULL;
do
{
print_session_commands();
buff = input_string();
command = atoi(buff);
free(buff);
}
while (command == 0);
return command;
}
int await_command(hash_t * hashtable)
{
int session_points = 0;
int command;
do
{
command = get_command();
switch(command)
{
case 1:
session_points += start_practice_round(hashtable);
break;
case 2:
add_dict_pair(hashtable);
break;
case 3:
delete_dict_pair(hashtable);
break;
case 4:
readme();
break;
case 9:
break;
default:
printf("Please enter proper command!\n");
break;
}
}
while (command != 9);
printf("\nGreat practice! You have correctly spelled %d words in total!\n", session_points);
return 0;
}
int load(hash_t * hashtable, const char *dictionary)
{
FILE *fp = fopen(dictionary, "r");
char key_a[LENGTH + 1];
char value_a[LENGTH + 1];
while (fscanf(fp, "%s - %[^\n]", key_a, value_a) != EOF)
{
add_kv_pair(hashtable, key_a, value_a);
}
fclose(fp);
return 1;
}
int unload(hash_t * hashtable, const char * dictionary)
{
FILE *fp = fopen(dictionary, "w");
entry_t * cursor = NULL;
for (int i = 0; i < hashtable->size; i++)
{
cursor = hashtable->table[i];
while (cursor)
{
fputs(cursor->key, fp);
fputs(" - ", fp);
fputs(cursor->value, fp);
fputs("\n", fp);
cursor = cursor->next;
}
}
fclose(fp);
return 1;
}
int free_hashtable(hash_t * hashtable)
{
entry_t *cursor = NULL;
for (int i = 0; i < hashtable->size; i++)
{
cursor = hashtable->table[i];
while (cursor != NULL)
{
entry_t *temp = cursor;
cursor = cursor->next;
free_entry(temp);
}
}
free(hashtable->table);
free(hashtable);
return 0;
}
int free_entry(entry_t * entry)
{
free(entry->value);
free(entry->key);
free(entry);
return 0;
}
int print_set(hash_t * set)
{
for (int i = 0; i < set->size; i++)
{
entry_t * cursor = set->table[i];
while (cursor)
{
printf("%s -> %s\n", cursor->key, cursor->value);
cursor = cursor->next;
}
}
return 0;
}
int start_practice_round(hash_t * hashtable)
{
hash_t * set = NULL;
set = initialize_hashtable(ROUND_SET);
prepare_practice_set(set, hashtable);
system("@cls||clear");
print_set(set);
print_practice_round_commands();
int points = practice_round(set);
return points;
}
int practice_round(hash_t * set)
{
char *input;
entry_t *prompt_pair;
int points, words;
points = words = 0;
input = input_string();
while (strcasecmp(input, "-STOP") != 0 && words < set->size)
{
free(input);
system("@cls||clear");
prompt_pair = prompt(set);
input = input_string();
words++;
if (strcasecmp(input, prompt_pair->value) == 0)
{
printf("Correct!\n");
sleep(1);
points++;
}
else
{
printf("Awww, you have misspelled.\n");
printf("Correct word is %s\n", prompt_pair->value);
sleep(3);
}
free_entry(prompt_pair);
}
printf("\nYou have correctly spelled %d out of %d words\n", points, words);
free(input);
free_hashtable(set);
return points;
}
int prepare_practice_set(hash_t * set, hash_t * hashtable)
{
entry_t * cursor = NULL;
srand(time(NULL));
int i = 0;
while (i < set->size)
{
cursor = hashtable->table[rand() % CAPACITY];
if(cursor)
{
add_kv_pair(set, cursor->key, cursor->value);
i++;
}
}
return 0;
}
int add_kv_pair(hash_t * hashtable, char * key, char * value)
{
unsigned int hash;
hash = DJB2Hash(key, hashtable->size);
entry_t * entry = NULL;
entry = new_entry(key, value);
entry->next = hashtable->table[hash];
hashtable->table[hash] = entry;
return 0;
}
int add_dict_pair(hash_t * hashtable)
{
printf("Please enter a word in language you're learning\n");
char * key = NULL;
key = input_string();
printf("Please enter relevant translation in English (single word)\n");
char * value = NULL;
value = input_string();
add_kv_pair(hashtable, key, value);
free(value);
free(key);
printf("\nThe word pair has been added to your dictionary!\n");
return 0;
}
int delete_dict_pair(hash_t * hashtable)
{
printf("Please enter a word in language you're learning that you would like to remove from the dictionary\n");
char * input = NULL;
input = input_string();
if (delete_kv_pair(hashtable, input))
{
printf("\nThe word pair has been deleted from your dictionary!\n");
}
else
{
printf("\nOoops... Something went wrong!\n");
}
free(input);
return 0;
}
int delete_kv_pair(hash_t * hashtable, char * key)
{
unsigned int hash;
hash = DJB2Hash(key, hashtable->size);
entry_t **address = NULL;
entry_t * cursor = NULL;
address = &(hashtable->table[hash]);
while(*address)
{
if (strcasecmp((*address)->key, key) == 0)
{
cursor = *address;
*address = cursor->next;
free_entry(cursor);
return 1;
}
*address = (*address)->next;
}
return 0;
}
int readme()
{
char * readme = README;
FILE *fp = fopen(readme, "r");
char ch;
if (!fp)
{
printf("Error while opening the file!\n");
exit(1);
}
while ((ch = fgetc(fp)) != EOF)
{
printf("%c", ch);
}
fclose(fp);
return 0;
}
// DJB2 hash function from http://www.cse.yorku.ca/~oz/hash.html with added functionality for case insensitivity
unsigned int DJB2Hash(const char *key, int size)
{
unsigned int hash = 5381;
int c;
while ((c = tolower(*key++)))
{
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
}
// Result of hashing mod total capacity of the hashtable
return hash % size;
}
void print_greeting()
{
printf("\n ================== Welcome to language practice ==================\n");
printf("| |\n");
printf("| You will see 10 word pairs appear on the screen. Memorize them. |\n");
printf("| Once the practice begins, you will need to translate the words |\n");
printf("| shown in the prompt into English! |\n");
printf("| |\n");
printf("| NOTE! |\n");
printf("| All answers are single words and do not require use of space! |\n");
printf("| |\n");
printf(" ==================================================================\n");
}
void print_session_commands()
{
printf("\nHow would you like to proceed?\n");
printf("1 - New practice round\n");
printf("2 - Add new word pair\n");
printf("3 - Delete a word pair by keyword\n");
printf("4 - Detailed READ.ME of the Language Practice program\n");
printf("9 - End session\n");
}
void print_practice_round_commands()
{
printf("\nType -START to start practice\n");
printf("Type -STOP to stop practice round at any time\n");
}