-
Notifications
You must be signed in to change notification settings - Fork 0
/
tablookup.c
185 lines (129 loc) · 3.8 KB
/
tablookup.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
/*
* tablookup(): Hash table look-up routines
*/
/*@ -unqualifiedtrans -nullderef -mustfreefresh -onlytrans -kepttrans -nullret */
// Includes
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// Definitions
#define HASHSIZE 101
// Structures
struct nlist {
struct nlist *next;
char *name;
char *defn;
};
// Globals
static struct nlist *hashtab[HASHSIZE]; // Pointer table
/*
* strdup(): make a duplicate copy of s
*/
static char *mystrdup(char *s) {
char *p = (char *)malloc(strlen(s) + 1);
if (p == NULL) {
printf("Error: ran out of memory");
exit(EXIT_FAILURE);
}
strcpy(p, s);
return p;
}
/*
* hash(): Calculates a hash value for a given string
*/
static unsigned hash(char *s) {
unsigned hashval;
for (hashval = 0; *s != '\0'; s++)
hashval = *s + 31 * hashval;
return hashval % HASHSIZE;
}
/*
* lookup(): Look for s in the hash table
*/
static struct nlist *lookup(char *s) {
struct nlist *np;
for (np = hashtab[hash(s)]; np != NULL; np = np->next)
if (strcmp(s, np->name) == 0)
return np; // Found
return NULL; // Not found
}
/*
* install(): Put a value into the hash table
*/
static struct nlist *install(char *name, char *defn) {
struct nlist *np;
if ((np = lookup(name)) == NULL) {
// Value not found in hash table so add it
unsigned hashval;
if ((np = (struct nlist *)malloc(sizeof(*np))) == NULL) {
printf("Error: ran out of memory");
exit(EXIT_FAILURE);
}
hashval = hash(name);
np->name = mystrdup(name);
np->next = hashtab[hashval];
hashtab[hashval] = np;
} else
// Value found so free up the previous value (to be replaced with the new)
free((void *)np->defn);
np->defn = mystrdup(defn);
return np;
}
/*
* undef(): remove a name and definition from the table
*/
static void undef(char *s) {
unsigned h;
struct nlist *prior;
struct nlist *np;
prior = NULL;
h = hash(s);
for (np = hashtab[h]; np != NULL; np = np->next) {
if (strcmp(s, np->name) == 0)
break;
prior = np;
}
if (np != NULL) {
if (prior == NULL)
hashtab[h] = np->next;
else
prior->next = np->next;
free((void *)np->name);
free((void *)np->defn);
free((void *)np);
}
}
/*
* Main
*/
int main(void)
struct nlist *np;
printf("The hash value for 'P. Todd Decker' is: %u\n", hash("P. Todd Decker"));
printf("Installing some key-value pairs...\n");
(void)install("name", "P. Todd Decker");
(void)install("street", "15203 Maple Street");
(void)install("city", "Overland Park");
(void)install("state", "Kansas");
(void)install("zipcode", "66223");
np = lookup("name");
printf("Looking up 'name' : %s\n", (np == NULL) ? "Not found" : np->defn);
np = lookup("street");
printf("Looking up 'street' : %s\n", (np == NULL) ? "Not found" : np->defn);
np = lookup("city");
printf("Looking up 'city' : %s\n", (np == NULL) ? "Not found" : np->defn);
np = lookup("state");
printf("Looking up 'state' : %s\n", (np == NULL) ? "Not found" : np->defn);
np = lookup("zipcode");
printf("Looking up 'zipcode': %s\n", (np == NULL) ? "Not found" : np->defn);
np = lookup("phone");
printf("Looking up 'phone' : %s\n", (np == NULL) ? "Not found" : np->defn);
printf("Changing 'zipcode'...\n");
(void)install("zipcode", "64063");
np = lookup("zipcode");
printf("Looking up 'zipcode': %s\n", (np == NULL) ? "Not found" : np->defn);
printf("Uninstalling 'name'\n");
undef("name");
np = lookup("name");
printf("Looking up 'name': %s\n", (np == NULL) ? "Not found" : np->defn);
return 0;
}