aboutsummaryrefslogtreecommitdiff
path: root/hashtable.c
blob: 0b4409f178df10efe97790b7b538b3d099a1eaa9 (plain)
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
#include "hashtable.h"

uint32_t hash_str(const char *s) {
    const unsigned char *p = (const unsigned char *)s;
    uint32_t h = 5381;

    while (*p) {
        h *= 33;
        h ^= *p++;
    }

    return h ^ (h >> 16);
}

list_node_t* list_add(list_node_t* head, const char* k, void* v) {
    list_node_t* n = (list_node_t*)malloc(sizeof(list_node_t));
    n->next = head;
    n->k = strdup(k);
    n->v = v;
    return n;
}

list_node_t* list_remove(list_node_t* head, const char* k) {
    list_node_t* tmp;

    // head remove
    while(head && strcmp(head->k, k) == 0) {
        tmp = head;
        head = head->next;
        free(tmp->k);
        free(tmp);
    }

    list_node_t* p = head;

    // normal (non-head) remove
    while(p->next) {
        if(strcmp(p->next->k, k) == 0)
        {
            tmp = p->next;
            p->next = p->next->next;
            free(tmp);
            continue;
        }
        p = p->next;
    }

    return head;
}

void* list_get(list_node_t* head, const char* k) {
    while(head) {
        if(strcmp(head->k, k) == 0) {
            return head->v;
        }
        head = head->next;
    }
    return (void*)0;
}

size_t list_length(list_node_t* head) {
    size_t length = 0;
    while(head) {
        length++;
        head = head->next;
    }
    return length;
}

hash_table_t* hashtable_new(size_t size) {
    hash_table_t* ht = NULL;
    if(size > 0) {
        ht = (hash_table_t*)malloc(sizeof(hash_table_t));
        ht->sz = size;
        ht->t = (list_node_t**)malloc(sizeof(list_node_t*) * size);
	for(int i = 0; i < size; i++) ht->t[i] = NULL;
    }
    return ht;
}

void hashtable_free(hash_table_t* ht) {
    if(ht) {
        free(ht->t);
        free(ht);
    }
}