Menu

[40d7ca]: / joe / hash.c  Maximize  Restore  History

Download this file

227 lines (194 with data), 4.7 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
223
224
225
226
/*
* Simple hash table
* Copyright
* (C) 1992 Joseph H. Allen
*
* This file is part of JOE (Joe's Own Editor)
*/
#include "types.h"
static HENTRY *freentry = NULL;
/* Compute hash value of string */
#define hnext(accu, c) (((accu) << 4) + ((accu) >> 28) + (c))
ptrdiff_t hash(const char *s)
{
ptrdiff_t accu = 0;
while (*s) {
accu = hnext(accu, *s++);
}
return accu;
}
/* Create hash table */
HASH *htmk(ptrdiff_t len)
{
HASH *t = (HASH *) joe_malloc(SIZEOF(HASH));
t->nentries = 0;
t->len = len;
t->tab = (HENTRY **) joe_calloc(SIZEOF(HENTRY *), len);
return t;
}
/* Delete hash table. Only the hash table is deleted, not the names and values */
void htrm(HASH *ht)
{
ptrdiff_t x;
for (x = 0; x != ht->len; ++x) {
HENTRY *p, *n;
for (p = ht->tab[x]; p; p = n) {
n = p->next;
p->next = freentry;
freentry = p;
}
}
joe_free(ht->tab);
joe_free(ht);
}
/* Expand hash table */
static void htexpand(HASH *h)
{
ptrdiff_t x;
/* Allocate new table */
ptrdiff_t new_size = h->len * 2;
HENTRY **new_table = (HENTRY **)joe_calloc(new_size, SIZEOF(HENTRY *));
/* Copy entries from old table to new */
for (x = 0; x != h->len; ++x) {
HENTRY *e;
while ((e = h->tab[x])) {
h->tab[x] = e->next;
e->next = new_table[e->hash_val & (new_size - 1)];
new_table[e->hash_val & (new_size - 1)] = e;
}
}
/* Replace old table with new */
free(h->tab);
h->tab = new_table;
h->len = new_size;
}
/* Bind a value to a name. This does not check for duplicate entries. The
* name and value are not duplicated: it's up to you to keep them around for
* the life of the hash table. */
void *htadd(HASH *ht, const char *name, void *val)
{
ptrdiff_t hval = hash(name);
ptrdiff_t idx = hval & (ht->len - 1);
HENTRY *entry;
ptrdiff_t x;
if (!freentry) {
entry = (HENTRY *) joe_malloc(SIZEOF(HENTRY) * 64);
for (x = 0; x != 64; ++x) {
entry[x].next = freentry;
freentry = entry + x;
}
}
entry = freentry;
freentry = entry->next;
entry->next = ht->tab[idx];
ht->tab[idx] = entry;
entry->name = name;
entry->val = val;
entry->hash_val = hval;
if (++ht->nentries == (ht->len >> 1) + (ht->len >> 2))
htexpand(ht);
return val;
}
/* Return value associated with name or NULL if there is none */
void *htfind(HASH *ht, const char *name)
{
HENTRY *e;
for (e = ht->tab[hash(name) & (ht->len - 1)]; e; e = e->next) {
if (!zcmp(e->name, name)) {
return e->val;
}
}
return NULL;
}
static ZHENTRY *zfreentry = NULL;
ptrdiff_t zhash(const int *s)
{
ptrdiff_t accu = 0;
while (*s) {
accu = hnext(accu, *s++);
}
return accu;
}
/* Create hash table */
ZHASH *Zhtmk(ptrdiff_t len)
{
ZHASH *t = (ZHASH *) joe_malloc(SIZEOF(ZHASH));
t->nentries = 0;
t->len = len;
t->tab = (ZHENTRY **) joe_calloc(SIZEOF(ZHENTRY *), len);
return t;
}
/* Delete hash table. Only the hash table is deleted, not the names and values */
void Zhtrm(ZHASH *ht)
{
ptrdiff_t x;
for (x = 0; x != ht->len; ++x) {
ZHENTRY *p, *n;
for (p = ht->tab[x]; p; p = n) {
n = p->next;
p->next = zfreentry;
zfreentry = p;
}
}
joe_free(ht->tab);
joe_free(ht);
}
/* Expand hash table */
static void Zhtexpand(ZHASH *h)
{
ptrdiff_t x;
/* Allocate new table */
ptrdiff_t new_size = h->len * 2;
ZHENTRY **new_table = (ZHENTRY **)joe_calloc(new_size, SIZEOF(ZHENTRY *));
/* Copy entries from old table to new */
for (x = 0; x != h->len; ++x) {
ZHENTRY *e;
while ((e = h->tab[x])) {
h->tab[x] = e->next;
e->next = new_table[e->hash_val & (new_size - 1)];
new_table[e->hash_val & (new_size - 1)] = e;
}
}
/* Replace old table with new */
free(h->tab);
h->tab = new_table;
h->len = new_size;
}
/* Bind a value to a name. This does not check for duplicate entries. The
* name and value are not duplicated: it's up to you to keep them around for
* the life of the hash table. */
void *Zhtadd(ZHASH *ht, const int *name, void *val)
{
ptrdiff_t hval = zhash(name);
ptrdiff_t idx = hval & (ht->len - 1);
ZHENTRY *entry;
ptrdiff_t x;
if (!zfreentry) {
entry = (ZHENTRY *) joe_malloc(SIZEOF(ZHENTRY) * 64);
for (x = 0; x != 64; ++x) {
entry[x].next = zfreentry;
zfreentry = entry + x;
}
}
entry = zfreentry;
zfreentry = entry->next;
entry->next = ht->tab[idx];
ht->tab[idx] = entry;
entry->name = name;
entry->val = val;
entry->hash_val = hval;
if (++ht->nentries == (ht->len >> 1) + (ht->len >> 2))
Zhtexpand(ht);
return val;
}
/* Return value associated with name or NULL if there is none */
void *Zhtfind(ZHASH *ht, const int *name)
{
ZHENTRY *e;
for (e = ht->tab[zhash(name) & (ht->len - 1)]; e; e = e->next) {
if (!Zcmp(e->name, name)) {
return e->val;
}
}
return NULL;
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.