forked from dale48/levawc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chashtbl.c
154 lines (117 loc) · 2.9 KB
/
chashtbl.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
/*
* _____
* ANSI / ___/
* / /__
* \___/
*
* Filename: chashtbl.c
* Author : Kyle Loudon/Dan Levin
* Date : Fri Mar 22 12:40:45 GMT 2013
* Version : 0.40
* ---
* Description: A chained hash table - implemented as a pure, generic ADT container.
*
* Revision history - coming up below:
*
* Date Revision message
* 2013-01-30 Created this file initially
* 2013-02-19 Made some revision to the Doxygen documentation. Enhanced the description of
* in/out parameters - i.e. double-pointers.
*
*/
/**
* @file chashtbl.c
**/
#include <stdio.h>
#include <stdlib.h>
#include "chashtbl.h"
struct CHtbl_
{
int buckets;
int (*h)(const void *key);
int (*match)(const void *key1, const void *key2);
void (*destroy)(void *data);
int size;
Slist *table;
};
/* FUNCTION DEFINITIONS --------------------------------------------------- */
CHtbl CHTBLinit(int buckets, int (*h)(const void *key), int (*match)(const void *key1, const void *key2), void (*destroy)(void *data))
{
CHtbl htbl;
int i;
if ((htbl = (CHtbl)malloc(sizeof(struct CHtbl_)))==NULL)
return NULL;
if ((htbl->table = (Slist *)malloc(buckets * sizeof(Slist))) == NULL)
return NULL;
htbl->buckets = buckets;
for (i = 0; i < htbl->buckets; i++)
{
if ((htbl->table[i] = SLISTinit(destroy)) == NULL)
return NULL;
SLISTsetmatch(htbl->table[i], match);
}
htbl->h = h;
htbl->match = match;
htbl->destroy = destroy;
htbl->size = 0;
return htbl;
}
void CHTBLdestroy(CHtbl htbl)
{
int i;
for (i = 0; i < htbl->buckets; ++i)
{
SLISTdestroy(htbl->table[i]);
}
free(htbl->table);
free(htbl);
}
int CHTBLinsert(CHtbl htbl, const void *data)
{
int bucket, retval;
void *tmp;
tmp = (void *)data;
if (CHTBLlookup(htbl, &tmp) == 0)
return 1;
/* Hash the key */
bucket = htbl->h(data) % htbl->buckets;
if ((retval = SLISTinsnext(htbl->table[bucket], NULL, data)) == 0)
htbl->size++;
return retval;
}
int CHTBLremove(CHtbl htbl, void **data)
{
int bucket, retval;
/* Hash the key */
bucket = htbl->h(*data) % htbl->buckets;
/* Remove the node */
if ((retval = SLISTfind_remove(htbl->table[bucket], data)) == 0) /* Node removal successful.. */
htbl->size--;
return retval;
}
int CHTBLlookup(const CHtbl htbl, void **data)
{
int bucket;
SlistNode tmpnode;
/* Hash the key */
bucket = htbl->h(*data) % htbl->buckets;
if ((tmpnode = SLISTfindnode(htbl->table[bucket], *data))) /* Data found */
{
*data = SLISTdata(tmpnode); /* Pass data back to caller */
return 0;
}
return -1;
}
void CHTBLprint(CHtbl htbl, void (*callback)(const void *data))
{
int i;
for (i = 0; i < htbl->buckets; ++i)
{
printf("\nBucket #%03d: ", i);
SLISTtraverse(htbl->table[i], callback, SLIST_FWD);
}
}
int CHTBLsize(CHtbl htbl)
{
return htbl->size;
}