implement dictionary with hashtable c++

closed account (93MGz8AR)
I want to implement a dictionary using a hashtable. I have a "word" textfile that contains a list of over 100,000 words (each word is separated by a newline and the words are only composed of letters and apostrophes) that I'll have to load into memory, and another file that I'll have to spell check against the dictionary (this file can be composed of anything, so I'll only spell check the words that are composed of letters and apostrophes.

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
#include <iostream>
#include <fstream>
#include <cctype>
#include <cstring>
#include <sys/resource.h>

int size = 0;

const int sizeofarray = 5000;

using namespace std;

double calculate(const rusage *b, const rusage *a);

int check();

struct node
{
	char word[50];
	node * nextnode;
};

node* dict[sizeofarray];

int hash(node*);

void unload(node*);

int main()
{
	rusage before, after;
	char temp[50];
	char tempchar;
	int a;
	int b;
	
	ifstream dictionary("~/Desktop/words");
	
	for(int s=0; s<sizeofarray; s++)
		dict[s]=NULL;
	
	getrusage(RUSAGE_SELF, &before);
	
	while(!dictionary.eof())
	{	
		a=0;
		while(1)
		{
			dictionary.get(tempchar);
			tempchar = tolower(tempchar);
			if(tempchar!='\n')
			{
				temp[a]=tempchar;
				a++;
			}
			else
			{
				temp[a]='\0';
				size++;
				node* tempnode = new node;
				tempnode->nextnode==NULL;
				strcpy(tempnode->word, temp);
				b=hash(tempnode);
				if(dict[b]==NULL)
					dict[b]=tempnode;
				else
				{
					tempnode->nextnode=dict[b];
					dict[b]=tempnode;
				}
				break;
			}
		}
	}
	getrusage(RUSAGE_SELF, &after);
	
	cout << "\nLoading words into dictionary: " << calculate(&before, &after) << endl;
	
	cout << "\nSize of dictionary: " << size << " words.\n";
	
	getrusage(RUSAGE_SELF, &before);
	
	check();
	
	getrusage(RUSAGE_SELF, &after);
	
	cout << "\nChecking file against dictionary: " << calculate(&before, &after) << endl;
	
	getrusage(RUSAGE_SELF, &before);
	
	for(int sh=0; sh < sizeofarray ;sh++)
	{
		unload(dict[sh]);
		dict[sh]=NULL;
	}
	
	getrusage(RUSAGE_SELF, &after);
	
	cout << "\nUnloading dictionary: " << calculate(&before, &after) << endl;
	
	return 0;
}

int check()
{
	ifstream spellcheck("/Users/bandi/Downloads/pset6/texts/pneumonoultramicroscopicsilicovolcanoconiosis.txt");
	if(spellcheck.fail())
	{
		cout << endl << "spellcheck fail" << endl;
		return -1;
	}
	int a;
	char tempword[50];
	char temp='a';
	int misspellings = 0;
	int noofwords = 0;
	node * comparetemp = NULL;
	while(!spellcheck.eof())	
	{
		a=0;
		while(1)
		{
			spellcheck.get(temp);
			temp = tolower(temp);
			if(isalpha(temp) || temp=='\'')
			{			
				tempword[a] = temp;	
				a++;
			}
			else if(isspace(temp) || spellcheck.eof())
			{
				tempword[a] = '\0';
				noofwords++;
				node * tempwordcheckhash = new node;
				strcpy(tempwordcheckhash->word, tempword);
				comparetemp = dict[hash(tempwordcheckhash)];
				while(1)
				{
					if(comparetemp!=NULL)
					{
						if(!(strcmp(comparetemp->word, tempwordcheckhash->word)) && comparetemp->nextnode==NULL)
						{
							cout << endl << tempwordcheckhash->word;
							misspellings++;
							break;
						}
						else if(strcmp(comparetemp->word, tempwordcheckhash->word))
							break;
						comparetemp = comparetemp -> nextnode;
					}
					else
					{
						cout << endl << tempwordcheckhash->word;
						misspellings++;
						break;
					}
				}
				
				delete tempwordcheckhash;
				tempwordcheckhash = NULL;
				
				while(!spellcheck.eof() && (!isalpha(temp) || temp=='\''))
					spellcheck.get(temp);
				
				spellcheck.seekg(-1, ios::cur);
				
				break;				
			}
			else
			{
				while(!spellcheck.eof() && (!isalpha(temp) || temp=='\''))
					spellcheck.get(temp);
				
				spellcheck.seekg(-1, ios::cur);
				break;
			}
		}
	}
	cout << endl << "Total misspellings: \t" << misspellings << endl;
	cout << endl << "Total words: \t" << noofwords << endl;
	return 1;
}

void unload(node * foo)
{
	if(foo == NULL || foo->nextnode == NULL)
		delete foo;
	else
		unload(foo->nextnode);
	
}

int hash(node* aNode)
{
	int h=0;
	int hashno=0;
	while(aNode->word[h] != '\0')
	{
		hashno = hashno + 50*tolower(aNode->word[h]) - tolower(aNode->word[h]);
		h++;
	}
	hashno=hashno % sizeofarray;
	return hashno;
}

double
calculate(const struct rusage *b, const struct rusage *a)
{
    if (b == NULL || a == NULL)
        return 0;
    else
        return ((((a->ru_utime.tv_sec * 1000000 + a->ru_utime.tv_usec) -
				  (b->ru_utime.tv_sec * 1000000 + b->ru_utime.tv_usec)) +
				 ((a->ru_stime.tv_sec * 1000000 + a->ru_stime.tv_usec) -
				  (b->ru_stime.tv_sec * 1000000 + b->ru_stime.tv_usec)))
                / 1000000.);
}


I seem to be having some bugs.
and they would be?
Topic archived. No new replies allowed.