-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathExercise15.cpp
151 lines (130 loc) · 3.43 KB
/
Exercise15.cpp
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
#include <iostream>
#include <vector>
class hash_map
{
std::vector<int> data1;
std::vector<int> data2;
int size;
int hash1(int key) const
{
return key % size;
}
int hash2(int key) const
{
return (key / size) % size;
}
public:
hash_map(int n) : size(n)
{
data1 = std::vector<int>(size, -1);
data2 = std::vector<int>(size, -1);
}
std::vector<int>::iterator lookup(int key)
{
auto hash_value1 = hash1(key);
if (data1[hash_value1] == key)
{
std::cout << "Found " << key << " in first table" << std::endl;
return data1.begin() + hash_value1;
}
auto hash_value2 = hash2(key);
if (data2[hash_value2] == key)
{
std::cout << "Found " << key << " in second table" << std::endl;
return data2.begin() + hash_value2;
}
return data2.end();
}
void erase(int key)
{
auto position = lookup(key);
if (position != data2.end())
{
*position = -1;
std::cout << "Removed the element " << key << std::endl;
}
else
{
std::cout << "Key " << key << " not found." << std::endl;
}
}
void insert(int key)
{
insert_impl(key, 0, 1);
}
void insert_impl(int key, int cnt, int table)
{
if (cnt >= size)
{
std::cout << "Cycle detected, while inserting " << key << ". Rehashing required." << std::endl;
return;
}
if (table == 1)
{
int hash = hash1(key);
if (data1[hash] == -1)
{
std::cout << "Inserted key " << key << " in table " << table << std::endl;
data1[hash] = key;
}
else
{
int old = data1[hash];
data1[hash] = key;
std::cout << "Inserted key " << key << " in table " << table << " by replacing " << old << std::endl;
insert_impl(old, cnt + 1, 2);
}
}
else
{
int hash = hash2(key);
if (data2[hash] == -1)
{
std::cout << "Inserted key " << key << " in table " << table << std::endl;
data2[hash] = key;
}
else
{
int old = data2[hash];
data2[hash] = key;
std::cout << "Inserted key " << key << " in table " << table << " by replacing " << old << std::endl;
insert_impl(old, cnt + 1, 2);
}
}
}
void print()
{
std::cout << "Index: ";
for (int i = 0; i < size; i++)
std::cout << i << '\t';
std::cout << std::endl;
std::cout << "Data1: ";
for (auto i : data1)
std::cout << i << '\t';
std::cout << std::endl;
std::cout << "Data2: ";
for (auto i : data2)
std::cout << i << '\t';
std::cout << std::endl;
}
};
int main()
{
hash_map map(7);
map.print();
map.insert(10);
map.insert(20);
map.insert(30);
std::cout << std::endl;
map.insert(104);
map.insert(2);
map.insert(70);
map.insert(9);
map.insert(90);
map.insert(2);
map.insert(7);
std::cout << std::endl;
map.print();
std::cout << std::endl;
map.insert(14); // This will cause cycle.
}