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
|
#include <ctype.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "util.h"
typedef int T;
struct hash_item {
struct hash_item *next;
char * key;
T data;
};
struct hash_tab {
struct hash_item *table[251]; // fit for your needs...
};
static unsigned long
hash_key(const unsigned char *str)
{
unsigned long hash = 5381;
unsigned int c;
while ( (c = *str++) != '\0' )
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
return hash;
}
void
hash_init(struct hash_tab *ht)
{
for ( size_t i = 0; i != NELEM(ht->table); ++i )
ht->table[i] = NULL;
}
static struct hash_item *
hash_add(struct hash_item *next, const char *key, T data)
{
struct hash_item *new_item;
char * new_key;
new_key = strdup(key); // strdup: not standard but commonly used...
new_item = malloc(sizeof(*new_item));
if ( new_key == NULL || new_item == NULL ) {
free(new_key);
free(new_item);
ERROR("out of memory");
return NULL;
}
new_item->next = next;
new_item->key = new_key;
new_item->data = data;
return new_item;
}
T *
hash_lookup(struct hash_tab *ht, const char *key, T data, int create)
{
unsigned long h;
struct hash_item *item;
h = hash_key((const unsigned char *) key) % NELEM(ht->table);
for ( item = ht->table[h]; item; item = item->next )
if ( strcmp(key, item->key) == 0 )
return &item->data;
// not found! create?
if ( create ) {
item = hash_add(ht->table[h], key, data);
if ( item != NULL )
ht->table[h] = item;
else
ERROR("can't create item");
}
return item ? &item->data : NULL;
}
bool
hash_delete(struct hash_tab *ht, const char *key)
{
unsigned long h;
struct hash_item *prev, *p;
h = hash_key((const unsigned char *) key) % NELEM(ht->table);
prev = NULL;
for ( p = ht->table[h]; p; p = p->next ) {
if ( strcmp(key, p->key) == 0 ) {
if ( prev == NULL )
ht->table[h] = p->next;
else
prev->next = p->next;
free(p->key);
free(p);
return true; // successfully removed!
}
prev = p;
}
return false;
}
void
hash_apply(struct hash_tab *ht, void (*visit)(const char *key, T data, void *cl), void *cl)
{
struct hash_item *item;
for ( size_t i = 0; i != NELEM(ht->table); ++i )
for ( item = ht->table[i]; item; item = item->next )
visit(item->key, item->data, cl);
}
void
hash_free(struct hash_tab *ht)
{
struct hash_item *p, *next;
for ( size_t i = 0; i != NELEM(ht->table); ++i ) {
for ( p = ht->table[i]; p; p = next ) {
next = p->next;
free(p->key);
free(p);
}
ht->table[i] = NULL;
}
}
int
getword(FILE *fp, char *buf, int size, int first(int), int rest(int))
{
int i = 0, c;
c = getc(fp);
for ( ; c != EOF; c = getc(fp) )
if ( first(c) ) {
if ( i < size - 1 )
buf[i++] = c;
c = getc(fp);
break;
}
for ( ; c != EOF && rest(c); c = getc(fp) )
if ( i < size - 1 )
buf[i++] = c;
if ( i < size )
buf[i] = 0;
else
buf[size - 1] = 0;
if ( c != EOF )
ungetc(c, fp);
return c > 0;
}
int
first(int c)
{
return isalpha(c);
}
int
rest(int c)
{
return isalpha(c) || c == '_';
}
void
print(const char *key, T data, void *cl)
{
fprintf(cl, "%s: %d\n", key, data);
}
int
main()
{
struct hash_tab ht[1];
char word[100];
hash_init(ht);
while ( getword(stdin, word, sizeof word, first, rest) ) {
int *p = hash_lookup(ht, word, 0, 1);
if ( p != NULL )
++(*p);
}
hash_delete(ht, "new_item");
hash_apply(ht, print, stdout);
hash_free(ht);
}
|