00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <stdio.h>
00023 #include <stdlib.h>
00024 #include <string.h>
00025 #include "hash.h"
00026
00027 #define HASH_LIMIT 0.5
00028
00030 typedef struct hash_node_t {
00031 int data;
00032 const char * key;
00033 struct hash_node_t *next;
00034 } hash_node_t;
00035
00036
00037
00038
00039
00040
00041
00042 static int hash(const hash_t *tptr, const char *key) {
00043 int i=0;
00044 int hashvalue;
00045
00046 while (*key != '\0')
00047 i=(i<<3)+(*key++ - '0');
00048
00049 hashvalue = (((i*1103515249)>>tptr->downshift) & tptr->mask);
00050 if (hashvalue < 0) {
00051 hashvalue = 0;
00052 }
00053
00054 return hashvalue;
00055 }
00056
00057
00058
00059
00060
00061
00062
00063 VMDEXTERNSTATIC void hash_init(hash_t *tptr, int buckets) {
00064
00065
00066 if (buckets==0)
00067 buckets=16;
00068
00069
00070 tptr->entries=0;
00071 tptr->size=2;
00072 tptr->mask=1;
00073 tptr->downshift=29;
00074
00075
00076 while (tptr->size<buckets) {
00077 tptr->size<<=1;
00078 tptr->mask=(tptr->mask<<1)+1;
00079 tptr->downshift--;
00080 }
00081
00082
00083 tptr->bucket=(hash_node_t **) calloc(tptr->size, sizeof(hash_node_t *));
00084
00085 return;
00086 }
00087
00088
00089
00090
00091
00092
00093 static void rebuild_table(hash_t *tptr) {
00094 hash_node_t **old_bucket, *old_hash, *tmp;
00095 int old_size, h, i;
00096
00097 old_bucket=tptr->bucket;
00098 old_size=tptr->size;
00099
00100
00101 hash_init(tptr, old_size<<1);
00102 for (i=0; i<old_size; i++) {
00103 old_hash=old_bucket[i];
00104 while(old_hash) {
00105 tmp=old_hash;
00106 old_hash=old_hash->next;
00107 h=hash(tptr, tmp->key);
00108 tmp->next=tptr->bucket[h];
00109 tptr->bucket[h]=tmp;
00110 tptr->entries++;
00111 }
00112 }
00113
00114
00115 free(old_bucket);
00116
00117 return;
00118 }
00119
00120
00121
00122
00123
00124
00125
00126
00127 VMDEXTERNSTATIC int hash_lookup(const hash_t *tptr, const char *key) {
00128 int h;
00129 hash_node_t *node;
00130
00131
00132
00133 h=hash(tptr, key);
00134 for (node=tptr->bucket[h]; node!=NULL; node=node->next) {
00135 if (!strcmp(node->key, key))
00136 break;
00137 }
00138
00139
00140 return(node ? node->data : HASH_FAIL);
00141 }
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151 VMDEXTERNSTATIC int hash_insert(hash_t *tptr, const char *key, int data) {
00152 int tmp;
00153 hash_node_t *node;
00154 int h;
00155
00156
00157 if ((tmp=hash_lookup(tptr, key)) != HASH_FAIL)
00158 return(tmp);
00159
00160
00161 while (tptr->entries>=HASH_LIMIT*tptr->size)
00162 rebuild_table(tptr);
00163
00164
00165 h=hash(tptr, key);
00166 node=(struct hash_node_t *) malloc(sizeof(hash_node_t));
00167 node->data=data;
00168 node->key=key;
00169 node->next=tptr->bucket[h];
00170 tptr->bucket[h]=node;
00171 tptr->entries++;
00172
00173 return HASH_FAIL;
00174 }
00175
00176
00177
00178
00179
00180
00181
00182
00183 VMDEXTERNSTATIC int hash_delete(hash_t *tptr, const char *key) {
00184 hash_node_t *node, *last;
00185 int data;
00186 int h;
00187
00188
00189 h=hash(tptr, key);
00190 for (node=tptr->bucket[h]; node; node=node->next) {
00191 if (!strcmp(node->key, key))
00192 break;
00193 }
00194
00195
00196 if (node==NULL)
00197 return HASH_FAIL;
00198
00199
00200 if (node==tptr->bucket[h])
00201 tptr->bucket[h]=node->next;
00202 else {
00203
00204 for (last=tptr->bucket[h]; last && last->next; last=last->next) {
00205 if (last->next==node)
00206 break;
00207 }
00208 last->next=node->next;
00209 }
00210
00211
00212 data=node->data;
00213 free(node);
00214
00215 return(data);
00216 }
00217
00218
00219
00220
00221
00222
00223 VMDEXTERNSTATIC int hash_entries(hash_t *tptr) {
00224 return tptr->entries;
00225 }
00226
00227
00228
00229
00230
00231
00232
00233
00234 VMDEXTERNSTATIC void hash_destroy(hash_t *tptr) {
00235 hash_node_t *node, *last;
00236 int i;
00237
00238 for (i=0; i<tptr->size; i++) {
00239 node = tptr->bucket[i];
00240 while (node != NULL) {
00241 last = node;
00242 node = node->next;
00243 free(last);
00244 }
00245 }
00246
00247
00248 if (tptr->bucket != NULL) {
00249 free(tptr->bucket);
00250 memset(tptr, 0, sizeof(hash_t));
00251 }
00252 }
00253
00254
00255
00256
00257
00258
00259 static float alos(hash_t *tptr) {
00260 int i,j;
00261 float alos=0;
00262 hash_node_t *node;
00263
00264
00265 for (i=0; i<tptr->size; i++) {
00266 for (node=tptr->bucket[i], j=0; node!=NULL; node=node->next, j++);
00267 if (j)
00268 alos+=((j*(j+1))>>1);
00269 }
00270
00271 return(tptr->entries ? alos/tptr->entries : 0);
00272 }
00273
00274
00275
00276
00277
00278
00279
00280 VMDEXTERNSTATIC char * hash_stats(hash_t *tptr) {
00281 static char buf[1024];
00282
00283 sprintf(buf, "%u slots, %u entries, and %1.2f ALOS",
00284 (int)tptr->size, (int)tptr->entries, alos(tptr));
00285
00286 return(buf);
00287 }
00288
00289
00290
00291