-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathHashFuction.cpp
More file actions
170 lines (154 loc) · 3.5 KB
/
HashFuction.cpp
File metadata and controls
170 lines (154 loc) · 3.5 KB
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
#include <iostream>
using namespace std;
const int MAX = 100;
class dictionary;
class node
{
string key, value;
node *next;
public:
friend class dictionary;
node()
{
next = NULL;
}
node(string key, string value)
{
this->key = key;
this->value = value;
next = NULL;
}
};
class dictionary
{
node *head[MAX];
public:
dictionary()
{
for (int i = 0; i < MAX; i++)
head[i] = NULL;
}
bool deleteWord(string word)
{
int index = hashf(word);
node *tmp = head[index];
node *par = head[index];
if (tmp == NULL) // if no word is present at that index
{
return false;
}
if (tmp->key == word && tmp->next == NULL) // only one word is present
{
tmp->next = NULL;
delete tmp;
return true;
}
// tmp=tmp->next;
while (tmp->key != word && tmp->next != NULL)
{
par = tmp;
tmp = tmp->next;
}
if (tmp->key == word && tmp->next != NULL)
{
par->next = tmp->next;
tmp->next = NULL;
delete tmp;
return true;
}
else // delete at end
{
par->next = NULL;
tmp->next = NULL;
delete tmp;
return true;
}
return false;
}
bool insert(string word, string meaning)
{
int index = hashf(word);
node *p = new node(word, meaning);
if (head[index] == NULL)
{
head[index] = p;
return true;
}
else
{
node *start = head[index];
while (start->next != NULL)
start = start->next;
start->next = p;
return true;
}
return false;
}
int hashf(string word)
{
int asciiSum = 0;
for (int i = 0; i < word.length(); i++)
{
asciiSum = asciiSum + word[i];
}
return (asciiSum % 100);
}
void print()
{
for (int i = 0; i < MAX; i++)
{
node *start = head[i];
if (start == NULL)
continue;
cout << "WORD"
<< "\t"
<< "MEANING" << endl;
while (start != NULL)
{
cout << "\n"
<< start->key << "\t" << start->value<<endl;
start = start->next;
}
}
}
};
int main()
{
dictionary d;
int choice;
string word, meaning;
do
{
cout << "1.Insert Word\n"
<< "2.Delete Word\n"
<< "3.Print Dictionary\n"
<< "Enter Your Choice :";
cin >> choice;
switch (choice)
{
case 1:
cout << "Enter Word: "<<endl;
cin >> word;
cout << "Enter Meaning: "<<endl;
cin >> meaning;
d.insert(word, meaning);
break;
case 2:
cout << "Enter Word to Delete: ";
cin >> word;
if (d.deleteWord(word))
cout << " Word is deleted.";
else
{
cout << "\nFailed to delete " << word;
}
break;
case 3:
d.print();
break;
default:
cout << "\nWrong Choice.";
}
} while (choice != 0);
return 0;
}