/hashtable.c (42cca350d155bcf65468482fb4c9a19c09e777e6) (2628 bytes) (mode 100644) (type blob)
#include <string.h>
#include <stdlib.h>
#include "hashtable.h"
static uint32_t hashfunc(const char *key)
{
//murmur3_32
static const uint32_t c1 = 0xcc9e2d51;
static const uint32_t c2 = 0x1b873593;
static const uint32_t r1 = 15;
static const uint32_t r2 = 13;
static const uint32_t m = 5;
static const uint32_t n = 0xe6546b64;
uint32_t len = strlen(key);
uint32_t hash = 0;
const int nblocks = len / 4;
const uint32_t *blocks = (const uint32_t *) key;
int i;
for (i = 0; i < nblocks; i++) {
uint32_t k = blocks[i];
k *= c1;
k = (k << r1) | (k >> (32 - r1));
k *= c2;
hash ^= k;
hash = ((hash << r2) | (hash >> (32 - r2))) * m + n;
}
const uint8_t *tail = (const uint8_t *) (key + nblocks * 4);
uint32_t k1 = 0;
switch (len & 3) {
case 3:
k1 ^= tail[2] << 16;
case 2:
k1 ^= tail[1] << 8;
case 1:
k1 ^= tail[0];
k1 *= c1;
k1 = (k1 << r1) | (k1 >> (32 - r1));
k1 *= c2;
hash ^= k1;
}
hash ^= len;
hash ^= (hash >> 16);
hash *= 0x85ebca6b;
hash ^= (hash >> 13);
hash *= 0xc2b2ae35;
hash ^= (hash >> 16);
return hash;
}
void ht_init(struct hashtable *h, size_t size)
{
h->count = 0;
h->size = size;
h->bucket = calloc(sizeof(struct hashnode), h->size);
}
void * ht_lookup(struct hashtable *h, const char *name)
{
size_t start = hashfunc(name);
size_t idx = (start + 1) % h->size;
for(; idx != start; idx = (idx + 1) % h->size){
if(h->bucket[idx].name){
if(!strcmp(h->bucket[idx].name, name)){
return h->bucket[idx].val;
}
}else{
break;
}
}
return NULL;
}
static void resize(struct hashtable *h)
{
struct hashtable newht;
ht_init(&newht, h->size*2 +1);
size_t i;
for(i = 0; i != h->size; i++){
if(h->bucket[i].name){
ht_put(&newht, h->bucket[i].name, h->bucket[i].val);
}
}
free(h->bucket);
h->bucket = newht.bucket;
h->size = newht.size;
h->count = newht.count;
}
bool ht_put(struct hashtable *h, const char *name, void *val)
{
if (ht_lookup(h, name) != NULL) {
return false;
}
size_t start = hashfunc(name);
size_t idx = (start + 1) % h->size;
for(; /*idx != start*/; idx = (idx + 1) % h->size){
if(!h->bucket[idx].name){
h->bucket[idx].name = name;
h->bucket[idx].val = val;
break;
}
}
h->count++;
if(h->count*3/2 > h->size){
resize(h);
}
return true;
}
void ht_clear(struct hashtable *h) {
memset(h->bucket, 0, h->size*sizeof(struct hashnode));
h->count = 0;
}
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
168 |
c1ca22975fdbd25aedc5c81f51b87f059bbc4140 |
.gitignore |
100644 |
blob |
48 |
3bfb16e6c32903fb8e4db429b412ee6e8ef23a14 |
AUTHORS |
100644 |
blob |
1313 |
4dc80d23e5c4804173171f9e03724a7d9fff66a1 |
LICENSE |
100644 |
blob |
3393 |
a6b2e5cdd057e83b54c1c159b6a2eafaf430053d |
Makefile |
100755 |
blob |
391 |
1f49d20bfca22ddee132b62a37c103610d08e211 |
check.sh |
100755 |
blob |
219 |
debf6a860da565f1e9e8d5a8c8a58daba0757ac4 |
fail.sh |
100644 |
blob |
215 |
e2d0c0f230e4387accdf5037eca5ee512c90a8a0 |
funcdecl.c |
100644 |
blob |
236 |
99ca506caaa5e457089f7391b005351fe8a0f2de |
funcdecl.h |
100644 |
blob |
21154 |
eabaaffedf414977d5a47c920fbe40e96c1309cc |
grammar.y |
100644 |
blob |
2628 |
42cca350d155bcf65468482fb4c9a19c09e777e6 |
hashtable.c |
100644 |
blob |
501 |
2185dc1cb949f6fa3a1b0985b4caaf7769456156 |
hashtable.h |
100644 |
blob |
5111 |
c38e8afb91fd5788b7346f112ca9bb8cb0e73741 |
main.c |
100644 |
blob |
19916 |
eebdfbf50c72727c62250de658d1546308565640 |
misc.c |
100644 |
blob |
3401 |
817d16acb9d442c09a5a9d388d690a866b946f4c |
misc.h |
100644 |
blob |
330 |
92a4597d6df5097c58649391541d54f06b3bda1b |
paramlist.c |
100644 |
blob |
256 |
bb253362ef26a0ea881856aebeb8503fb82646fb |
paramlist.h |
100644 |
blob |
1442 |
13257c0e670ee1208e24eba34fcaf87fb55b0fae |
readme.md |
040000 |
tree |
- |
8edb23b3ecd9a20c20e130f517ad5e4dee09ffea |
tests |
100644 |
blob |
6115 |
a4763c19dd0a9d8ba9435d0144b4d7b453603459 |
token.l |
100644 |
blob |
2187 |
973210c307fc9f81122e72fff412139b57461ec3 |
typeandname.c |
100644 |
blob |
914 |
c7c2ecbf5459c7cb80bd2661e6ca78c32a780e10 |
typeandname.h |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/vrtc/pjass
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/vrtc/pjass
Clone this repository using git:
git clone git://git.rocketgit.com/user/vrtc/pjass
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main