-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcliqueHash.cpp
194 lines (161 loc) · 4.86 KB
/
cliqueHash.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
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
#include "cliqueHash.h"
size_t cliqueHash::hash_function(const clique key)
{
const size_t keySize = key.size();
// std::cerr << "clique size for hash_function is " << key.size() << "\n";
size_t hash_key;
size_t newInd[keySize];
for (size_t i = 0; i < keySize; i++)
newInd[i] = key.at(keySize-1-i) & b;
// for (size_t i = 1; i < keySize; i++) new_ind[i] = A*key.at(i);
hash_key = newInd[0] << hash_bits - offSet; // move to the left
size_t move;
for (size_t i = 1; i < keySize; i++)
{
move = hash_bits - (i+1)*offSet;
newInd[i] = newInd[i] << move;
hash_key = hash_key | newInd[i] ; // take
}
hash_key = hash_key | ( key.at(keySize-2) & c );
// now take only the last hash_bits bits
// hash_key = hash_key & a;
// std::cerr << "hash key is: " << hash_key << "\n";
/*
hash_key = key.at(0)+1;
for (size_t i = 1; i < key.size(); i++) hash_key *= key.at(i);
hash_key = hash_key%size;
// hash_key = (key.at(0)+1)*key.at(1)*key.at(2)*key.at(3)%size;
// hash_key = ( key.at(0) * key.at(3) + key.at(1) * key.at(2) )%size;
*/
if (hash_key >= size || hash_key < 0 )
{
std::cerr << "hash function did not work!\n";
// std::cerr << "nodes were: " << key.at(0) << " " << key.at(1) << " " << key.at(2) << " " << key.at(3) << "\n";
std::cerr << "hash key was: " << hash_key << "\n";
std::cerr << "hash key size was: " << keySize << "\n";
}
return hash_key;
}
cliqueHash::cliqueHash(const size_t hashSize, const size_t t, const size_t keySize)
{
hashTable.resize(hashSize); // reserve memory
keyCount = 0;
size = hashSize;
hash_bits = t;
offSet = hash_bits/keySize; // this is how much we can move bits for each index
a = 1;
a = a << hash_bits;
a = a - 1; // beginning is zeros, only hash_bits lasts bits are one
b = 1;
b = b << offSet;
b = b-1;
c = 1;
c = c << ( hash_bits - keySize*offSet );
c = c - 1;
}
cliqueHash::cliqueHash()
{
cliqueHash(0, 1, 1);
}
bool cliqueHash::contains(const clique & key)
{
// std::cerr << "entering contains-function\n";
size_t hash_key = hash_function(key);
// std::cerr << "hash-key is:" << hash_key << "\n";
bool key_found = false;
for (cliqueIndexSet::iterator i = hashTable.at(hash_key).begin(); !key_found && i != hashTable.at(hash_key).end(); i++)
{
if ( (*i).first == key ) key_found = true;
}
// std::cerr << "leaving contains-function\n";
return key_found;
}
int cliqueHash::getValue(const clique & key)
{
size_t hash_key = hash_function(key);
int value = -1;
bool key_found = false;
for (cliqueIndexSet::iterator i = hashTable.at(hash_key).begin(); !key_found && i != hashTable.at(hash_key).end(); i++)
{
if ( (*i).first == key )
{
value = (*i).second;
key_found = true;
}
}
return value;
}
void cliqueHash::put(const clique & key, const size_t value)
{
size_t hash_key = hash_function(key);
if ( contains(key) )
{
bool key_found = false;
for (cliqueIndexSet::iterator i = hashTable.at(hash_key).begin(); !key_found && i != hashTable.at(hash_key).end(); i++)
{
if ( (*i).first == key )
{
(*i).second = value;
key_found = true;
}
}
}
else
{
std::pair<clique,size_t> cliqueValPair(key,value);
hashTable.at(hash_key).push_back( cliqueValPair );
keyCount++;
}
}
std::pair<clique,size_t> cliqueHash::begin()
{
curr_hash_key = 0;
while ( curr_hash_key < size && hashTable.at(curr_hash_key).size() == 0 )
{
curr_hash_key++;
}
if ( curr_hash_key < size ) // now we have found the first slot that is not empty
{
iter = hashTable.at(curr_hash_key).begin();
return *iter;
}
else
{
clique tmpClique;
currPair = std::make_pair( tmpClique, 0);
return currPair;
}
}
std::pair<clique,size_t> cliqueHash::next()
{
iter++;
if ( iter == hashTable.at(curr_hash_key).end() ) // move to the next non-empty slot
{
do
{
curr_hash_key++;
}
while ( curr_hash_key < size && hashTable.at(curr_hash_key).size() == 0 );
if ( curr_hash_key < size ) // now we have found the first slot that is not empty
{
iter = hashTable.at(curr_hash_key).begin();
return *iter;
}
else
{
clique tmpClique;
currPair = std::make_pair(tmpClique, 0);
return currPair;
}
}
else
{
return *iter;
}
}
bool cliqueHash::finished()
{
if ( curr_hash_key == size ) return true;
else if ( getKeyCount() == 0 ) return true;
else return false;
}