forked from justinethier/cyclone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hashset.c
155 lines (137 loc) · 3.46 KB
/
hashset.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
/* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
/*
* Copyright 2012 Couchbase, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "cyclone/hashset.h"
#include <assert.h>
static const unsigned int prime_1 = 73;
static const unsigned int prime_2 = 5009;
hashset_t hashset_create()
{
hashset_t set = calloc(1, sizeof(struct hashset_st));
if (set == NULL) {
return NULL;
}
set->nbits = 3;
set->capacity = (size_t)(1 << set->nbits);
set->mask = set->capacity - 1;
set->items = calloc(set->capacity, sizeof(size_t));
if (set->items == NULL) {
hashset_destroy(set);
return NULL;
}
set->nitems = 0;
set->n_deleted_items = 0;
return set;
}
size_t hashset_num_items(hashset_t set)
{
return set->nitems;
}
void hashset_destroy(hashset_t set)
{
if (set) {
free(set->items);
}
free(set);
}
static int hashset_add_member(hashset_t set, void *item)
{
size_t value = (size_t)item;
size_t ii;
if (value == 0 || value == 1) {
return -1;
}
ii = set->mask & (prime_1 * value);
while (set->items[ii] != 0 && set->items[ii] != 1) {
if (set->items[ii] == value) {
return 0;
} else {
/* search free slot */
ii = set->mask & (ii + prime_2);
}
}
set->nitems++;
if (set->items[ii] == 1) {
set->n_deleted_items--;
}
set->items[ii] = value;
return 1;
}
static void maybe_rehash(hashset_t set)
{
size_t *old_items;
size_t old_capacity, ii;
if (set->nitems + set->n_deleted_items >= (double)set->capacity * 0.85) {
old_items = set->items;
old_capacity = set->capacity;
set->nbits++;
set->capacity = (size_t)(1 << set->nbits);
set->mask = set->capacity - 1;
set->items = calloc(set->capacity, sizeof(size_t));
set->nitems = 0;
set->n_deleted_items = 0;
assert(set->items);
for (ii = 0; ii < old_capacity; ii++) {
hashset_add_member(set, (void *)old_items[ii]);
}
free(old_items);
}
}
int hashset_add(hashset_t set, void *item)
{
int rv = hashset_add_member(set, item);
maybe_rehash(set);
return rv;
}
int hashset_remove(hashset_t set, void *item)
{
size_t value = (size_t)item;
size_t ii = set->mask & (prime_1 * value);
while (set->items[ii] != 0) {
if (set->items[ii] == value) {
set->items[ii] = 1;
set->nitems--;
set->n_deleted_items++;
return 1;
} else {
ii = set->mask & (ii + prime_2);
}
}
return 0;
}
int hashset_is_member(hashset_t set, void *item)
{
size_t value = (size_t)item;
size_t ii = set->mask & (prime_1 * value);
while (set->items[ii] != 0) {
if (set->items[ii] == value) {
return 1;
} else {
ii = set->mask & (ii + prime_2);
}
}
return 0;
}
void hashset_to_array(hashset_t set, void **items)
{
for (unsigned int hs = 0, a = 0; hs < set->capacity; hs++) {
size_t value = (size_t)set->items[hs];
if (value != 0 && value != 1) {
items[a] = (void *)value;
a++;
}
}
}