-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash_map.c
181 lines (146 loc) · 3.95 KB
/
hash_map.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
#include "hash_map.h"
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include "upc_assert_message.h"
//
//
// struct hash_trait* hash_trait_init_string (struct hash_trait* trait)
// {
//
// }
//
// struct hash_trait* hash_trait_init_int (struct hash_trait* trait)
// {
//
// }
struct hash_map* hash_map_init(struct hash_map* h, struct hash_trait* trait, int buckets_size)
{
if (buckets_size <= 0)
{
return NULL;
}
if (NULL == trait)
{
return NULL;
}
// 创建桶内存
size_t size = sizeof(struct hash_bucket) * buckets_size;
struct hash_bucket* buckets = (struct hash_bucket*)malloc(size);
if (NULL == buckets)
{
return NULL;
}
memset(buckets, 0, size);
// 初始化 hash_map 的成员变量
h->buckets = buckets;
h->buckets_cap = buckets_size;
h->count = 0;
h->trait = trait;
return h;
}
void hash_map_exit(struct hash_map* h)
{
if (NULL == h)
{
return;
}
if (NULL != h->buckets)
{
free(h->buckets);
}
}
struct hash_node* hash_map_put (struct hash_map* h, struct hash_node* n)
{
void* key = h->trait->key(h->trait, n);
uint32 hash = h->trait->hash(h->trait, key);
uint32 index = hash % h->buckets_cap;
struct hash_bucket* bucket = h->buckets + index;
if (NULL == bucket->first)
{
bucket->first = n;
n->next = n;
n->prev = n;
h->count++;
return NULL; // 添加成功
}
struct hash_node* old_node = NULL;
for (struct hash_node* node = bucket->first; NULL != node; node = node->next)
{
void* key2 = h->trait->key(h->trait, node);
if (h->trait->equal(h->trait, key, key2))
{
if (n == node)
{
return NULL; // 将自身重新添加进来
}
old_node = node;
n->next = node->next;
n->prev = node->prev;
node->next->prev = n;
node->prev->next = n;
if (node == bucket->first)
{
bucket->first = n;
}
old_node->next = NULL;
old_node->prev = NULL;
return old_node; // 添加成功,且代替了旧的项目
}
}
// 如果 key 对应的项目不存在,那么尝试新添加一个
struct hash_node* first = bucket->first;
struct hash_node* last = bucket->first->prev;
n->prev = last;
n->next = first;
last->next = n;
first->prev = n;
h->count++;
return NULL;
}
struct hash_node* hash_map_get (struct hash_map* h, void* key)
{
uint32 hash = h->trait->hash(h->trait, key);
uint32 index = hash % h->buckets_cap;
struct hash_bucket* bucket = h->buckets + index;
for (struct hash_node* node = bucket->first; NULL != node; node = node->next)
{
void* key2 = h->trait->key(h->trait, node);
if (h->trait->equal(h->trait, key, key2))
{
return node;
}
}
return NULL;
}
struct hash_node* hash_map_pop (struct hash_map* h, void* key)
{
uint32 hash = h->trait->hash(h->trait, key);
uint32 index = hash % h->buckets_cap;
struct hash_bucket* bucket = h->buckets + index;
for (struct hash_node* node = bucket->first; NULL != node; node = node->next)
{
void* key2 = h->trait->key(h->trait, node);
if (h->trait->equal(h->trait, key, key2))
{
if (node->prev != node)
{
if (node == bucket->first)
{
bucket->first = node->next;
}
node->prev->next = node->next;
node->next->prev = node->prev;
node->prev = node;
node->next = node;
}
else
{
bucket->first = NULL;
}
h->count--;
return node;
}
}
return NULL;
}