-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHashMap.h
More file actions
222 lines (197 loc) · 5.12 KB
/
HashMap.h
File metadata and controls
222 lines (197 loc) · 5.12 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
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
#ifndef __HASHMAP_H
#define __HASHMAP_H
#include "ElementNotExist.h"
template <class K,class V,class H>
class HashMap
{
private:
int _capacity,_size;
public:
class Entry;
struct node;
node **_storage;
class Iterator;
HashMap()
{
_capacity=99971;
_size=0;
_storage=new node*[_capacity];
for(int __I=0;__I<_capacity;__I++)
_storage[__I]=new node;
}
HashMap(int _initial_capacity)
{
_capacity=_initial_capacity;
_size=0;
_storage=new node*[_capacity];
for(int __I=0;__I<_capacity;__I++)
_storage[__I]=new node;
}
~HashMap()
{
clear();
for(int __I=0;__I<_capacity;__I++)
delete _storage[__I];
delete [] _storage;
}
HashMap &operator=(const HashMap &x)
{
if(this==&x) return *this;
clear();
for(int __I=0;__I<_capacity;__I++)
delete _storage[__I];
delete [] _storage;
_capacity=x._capacity;
_size=0;
_storage=new node*[_capacity];
for(int __I=0;__I<_capacity;__I++)
{
_storage[__I]=new node;
for(node *_pos=x._storage[__I]->_next;_pos!=NULL;_pos=_pos->_next)
insert(_pos->_data);
}
return *this;
}
HashMap(const HashMap &x)
{
_capacity=x._capacity;
_size=0;
_storage=new node*[_capacity];
for(int __I=0;__I<_capacity;__I++)
{
_storage[__I]=new node;
for(node *_pos=x._storage[__I]->_next;_pos!=NULL;_pos=_pos->_next)
insert(_pos->_data);
}
}
Iterator iterator() const
{
return Iterator(this);
}
void clear()
{
for(int __I=0;__I<_capacity;__I++)
{
for(node* _pos=_storage[__I]->_next,*_rem;_pos!=NULL;_rem=_pos,_pos=_pos->_next,delete _rem)
;
_storage[__I]->_next=NULL;
}
_size=0;
}
bool containsKey(const K &key) const
{
int _P=(H::hashCode(key)%_capacity+_capacity)%_capacity;
for(node *_pos=_storage[_P]->_next;_pos!=NULL;_pos=_pos->_next)
if(_pos->_data.key==key)
return true;
return false;
}
bool containsValue(const V &value) const
{
for(int __I=0;__I<_capacity;__I++)
for(node *_pos=_storage[__I]->_next;_pos!=NULL;_pos=_pos->_next)
if(_pos->_data.value==value)
return true;
return false;
}
const V &get(const K &key) const
{
int _P=(H::hashCode(key)%_capacity+_capacity)%_capacity;
for(node *_pos=_storage[_P]->_next;_pos!=NULL;_pos=_pos->_next)
if(_pos->_data.key==key)
return _pos->_data.value;
throw ElementNotExist();
}
bool isEmpty() const
{
return !_size;
}
void put(const K &key,const V &value)
{
int _P=(H::hashCode(key)%_capacity+_capacity)%_capacity;
for(node *_pos=_storage[_P]->_next;_pos!=NULL;_pos=_pos->_next)
if(_pos->_data.key==key)
{
_pos->_data.value=value;
return;
}
insert(Entry(key,value));
}
void remove(const K &key)
{
int _P=(H::hashCode(key)%_capacity+_capacity)%_capacity;
for(node *_pos=_storage[_P]->_next,*_rem=_storage[_P];_pos!=NULL;_rem=_pos,_pos=_pos->_next)
if(_pos->_data.key==key)
{
_rem->_next=_pos->_next;
delete _pos;
--_size;
return;
}
throw ElementNotExist();
}
int size() const
{
return _size;
}
void insert(const Entry & _E)
{
int _P=(H::hashCode(_E.key)%_capacity+_capacity)%_capacity;
node *_data=new node(_E);
_data->_next=_storage[_P]->_next;
_storage[_P]->_next=_data;
_size++;
}
};
template<class K,class V,class H>
class HashMap<K,V,H>::Entry
{
public:
K key;V value;
Entry(K k,V v):key(k),value(v) {}
Entry() {}
K getKey() const { return key; }
V getValue() const{ return value; }
};
template<class K,class V,class H>
struct HashMap<K,V,H>::node
{
Entry _data;
node *_next;
node(const Entry &dat):_data(dat),_next(NULL) {}
node():_next(NULL) {}
};
template<class K,class V,class H>
class HashMap<K,V,H>::Iterator
{
private:
int _cur;
node *_pos;
const HashMap *_host;
public:
bool hasNext() const
{
if(_pos->_next) return true;
for(int __I=_cur+1;__I<_host->_capacity;__I++)
if(_host->_storage[__I]->_next!=NULL)
return true;
return false;
}
const Entry &next()
{
if(!hasNext()) throw ElementNotExist();
if(_pos->_next!=NULL)
{
_pos=_pos->_next;
return _pos->_data;
}
for(int __I=_cur+1;__I<_host->_capacity;__I++)
if(_host->_storage[__I]->_next!=NULL)
{
_pos=_host->_storage[__I]->_next;_cur=__I;
return _pos->_data;
}
}
Iterator(const HashMap *hos=NULL):_host(hos) {_pos=_host->_storage[0];_cur=0;}
};
#endif