-
Notifications
You must be signed in to change notification settings - Fork 37
/
hash.c
276 lines (236 loc) · 7.61 KB
/
hash.c
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
/* File: hash.c
* Author: Richard Durbin ([email protected])
* Copyright (C) Genome Research Limited, 2011-
* -------------------------------------------------------------------
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* -------------------------------------------------------------------
* Description: based on acedb code from Jean Thierry-Mieg and Richard Durbin 1999-2004
* Exported functions:
* HISTORY:
* Last edited: Sep 23 16:17 2014 (rd)
* Created: Fri Jan 7 09:20:25 2011 (rd)
*-------------------------------------------------------------------
*/
#include "utils.h" /* includes array.h, hash.h */
/* Originally grabbed from Steve Omohundro's sather code by Richard Durbin.
Entirely rewritten in early 1990s by Jean Thierry-Mieg as acedb ass* package,
using bouncing by relative primes and deletion flagging. Assumed non-0, non-minus-one
pointers as keys and values.
Again rewritten by RD in 2011 as stand alone hash* package, accepting a union
int/float/pointer as input, and generating consecutive positive integer outputs to
be used as array indices, i.e. similar to DICT package, generating extra indirection
if true type is an integer, but flexible.
Empty and removed keys are now INT_MAX and INT_MAX-1 for integers and floats.
*/
typedef struct {
int nbits ; /* power of 2 = size of arrays - 1 */
unsigned int mask ; /* 2**nbits-1 */
int n ; /* number of items stored */
int guard ; /* number of slots to fill before doubling */
int *keys ; /* array of integer keys stored */
int *values ; /* array of indices */
Array freeList ; /* list of removed integers that can be reused */
int nFree ; /* number in free list */
int iter ; /* used in iterator */
} TRUE_HASH ;
static const int IS5 = (sizeof(long int)*8)/5 ;
static const int IS7 = (sizeof(long int)*8)/7 ;
#define HASH_FUNC(_key) { register int z = IS5, x = _key.i ; \
for (hash = x, x >>= 5 ; z-- ; x >>= 5) hash ^= x ; \
hash &= h->mask ; \
}
#define DELTA(_key) { register int z = IS7, x = _key.i ; \
for (delta = x, x >>= 7 ; z-- ; x >>= 7) delta ^= x ; \
delta = (delta & h->mask) | 0x01 ; \
} /* delta odd is prime relative to 2^m */
static const int REMOVED = (INT_MAX-1)^INT_MAX ;
static int nCreated = 0 ;
static int nDestroyed = 0 ;
static int nAdded = 0 ;
static int nBounced = 0 ;
static int nFound = 0 ;
static int nNotFound = 0 ;
/**************** create/destroy/clear ******************/
HASH hashCreate (int n)
{
TRUE_HASH *h = myalloc (1, TRUE_HASH) ;
if (n < 64) n = 64 ;
--n ;
h->nbits = 1 ; /* make room, be twice as big as needed */
while (n >>= 1) ++h->nbits ; /* number of left most bit + 1 */
h->mask = (1 << h->nbits) - 1 ;
h->guard = (1 << (h->nbits - 1)) ;
h->keys = mycalloc (1 << h->nbits, int) ;
h->values = myalloc (1 << h->nbits,int) ;
h->n = 0 ;
h->freeList = arrayCreate (32, int) ;
h->nFree = 0 ;
++nCreated ;
return (HASH) h ;
}
void hashDestroy (HASH hx)
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
free (h->keys) ;
free (h->values) ;
arrayDestroy (h->freeList) ;
free (h) ;
++nDestroyed ;
}
void hashClear (HASH hx)
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
h->n = 0 ;
memset (h->keys, 0, sizeof(int)*(1 << h->nbits)) ;
h->freeList = arrayReCreate (h->freeList, 32, int) ;
}
/********************/
static void hashDouble (TRUE_HASH *h)
{
int oldsize, newsize ;
long int hash, delta = 0 ;
int *oldKeys, *kp ;
int *oldValues, i ;
HASHKEY hk ;
oldsize = 1 << h->nbits ;
++h->nbits ;
newsize = 1 << h->nbits ;
h->mask = (1 << h->nbits) - 1 ;
h->guard = (1 << (h->nbits - 1)) ;
oldKeys = h->keys ;
h->keys = mycalloc (newsize,int) ;
oldValues = h->values ;
h->values = myalloc (newsize,int) ;
for (i = 0, kp = oldKeys ; i < oldsize ; i++)
if (*kp && *kp != REMOVED)
{ hk.i = *kp ; HASH_FUNC(hk) ;
while (TRUE)
if (!h->keys[hash]) /* don't need to test REMOVED */
{ h->keys[hash] = *kp ;
h->values[hash] = oldValues[i] ;
--h->guard ; /* NB don't need to change h->n */
++nAdded ;
break ;
}
else
{ nBounced++ ;
if (!delta) DELTA(hk) ;
hash = (hash + delta) & h->mask ;
}
}
free (oldKeys) ;
free (oldValues) ;
}
/************************ Searches ************************************/
int hashFind (HASH hx, HASHKEY k)
/* if found, returns index, else returns 0 */
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
long int hash, delta = 0 ;
HASH_FUNC(k) ;
while (TRUE)
if (h->keys[hash] == k.i)
{ nFound++ ;
return h->values[hash] ;
}
else if (!h->keys[hash])
{ nNotFound++ ;
return 0 ;
}
else
{ nBounced++ ;
if (!delta) DELTA(k) ;
hash = (hash + delta) & h->mask ;
}
}
/************************ insertions ************************************/
/* if already there returns FALSE, else inserts and returns TRUE */
int hashAdd (HASH hx, HASHKEY k)
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
long int hash, delta = 0 ;
int test ;
if (!h->guard)
hashDouble (h) ;
HASH_FUNC(k) ;
while (TRUE)
if (!h->keys[hash] || h->keys[hash] == REMOVED) /* free slot to fill */
{ if (!h->keys[hash]) --h->guard ;
h->keys[hash] = k.i ;
if (h->nFree)
h->values[hash] = arr(h->freeList, h->nFree--, int) ;
else
h->values[hash] = ++h->n ;
nAdded++ ;
return h->values[hash] ;
}
else if (h->keys[hash] == k.i) /* already there */
return h->values[hash] ;
else
{ nBounced++ ;
if (!delta) DELTA (k) ;
hash = (hash + delta) & h->mask ;
}
}
/************************ Removals ************************************/
BOOL hashRemove (HASH hx, HASHKEY k)
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
long int hash, delta = 0 ;
HASH_FUNC(k) ;
while (TRUE)
if (h->keys[hash] == k.i)
{ h->keys[hash] = REMOVED ;
array(h->freeList, ++h->nFree, int) = h->values[hash] ;
++nFound ;
return TRUE ;
}
else if (!h->keys[hash])
{ nNotFound++ ;
return FALSE ;
}
else
{ nBounced++ ;
if (!delta) DELTA(k) ;
hash = (hash + delta) & h->mask ;
}
}
/********************* iterator through members of a HASH **********************/
void hashInitIterator (HASH hx)
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
h->iter = -1 ;
}
int hashNextKeyValue (HASH hx, HASHKEY *kp, int *ip)
{
TRUE_HASH *h = (TRUE_HASH*) hx ;
int size = 1 << h->nbits ;
while (++h->iter < size)
if (h->keys[h->iter] && h->keys[h->iter] != REMOVED)
{ kp->i = h->keys[h->iter] ;
*ip = h->values[h->iter] ;
return *ip ;
}
return 0 ; /* done if reached end of table */
}
/**********************************************************************/
void hashStats (void)
{
printf ("%d hashes (%d created, %d destroyed)\n",
nCreated - nDestroyed, nCreated, nDestroyed) ;
printf ("%d added, %d found, %d bounced, %d not found\n",
nAdded, nFound, nBounced, nNotFound) ;
}
/************************ end of file ********************************/