This repository was archived by the owner on Nov 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathhashmap.c
132 lines (121 loc) · 4.3 KB
/
hashmap.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
/*
* hashmap.c: Hashmap implementation
* (c) Mohammad Hasanzadeh Mofrad, 2019
* (e) [email protected]
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "hashmap.h"
void* hashmap_allocate(unsigned long size) {
void* ptr = NULL;
if(size) {
ptr = malloc(size);
if(!ptr) {
fprintf(stderr, "Error on mallocing memory\n");
exit(1);
}
memset(ptr, 0, size);
}
return(ptr);
}
void hashmap_deallocate(void* ptr) {
free(ptr);
ptr = NULL;
}
struct hashmapbase* hashmap_initialize(unsigned int size) {
struct hashmapbase* base = (struct hashmapbase*) hashmap_allocate(sizeof(struct hashmapbase));
base->size = size;
base->map = (struct hashmap**) hashmap_allocate(size * sizeof(struct hashmap*));
return(base);
}
/* Print the hashmap*/
void hashmap_print(struct hashmapbase* base) {
struct hashmap** map = base->map;
unsigned int size = base->size;
int i = 0;
printf("############### HashMap Content ################\n");
for(i = 0; i < size; i++) {
unsigned int key = i;
struct hashmap* hashmap_entry = (struct hashmap*) map[key];
if(hashmap_entry) {
printf("0x%8x(%10d): ", hashmap_entry->key, hashmap_entry->key);
struct values* head = hashmap_entry->head;
while(head) {
printf("%d ", head->value);
head = head->next;
}
printf("\n");
}
}
}
/* Insert into the hashmap*/
void hashmap_insert(struct hashmapbase* base, unsigned int key, unsigned int value) {
struct hashmap** map = base->map;
struct hashmap* hashmap_entry = (struct hashmap*) map[key];
if(hashmap_entry == NULL) {
hashmap_entry = (struct hashmap*) hashmap_allocate(sizeof(struct hashmap));
hashmap_entry->key = key;
map[key] = hashmap_entry;
}
if(hashmap_entry->head == NULL) {
hashmap_entry->head = (struct values*) hashmap_allocate(sizeof(struct values));
hashmap_entry->head->value = value;
hashmap_entry->head->next = NULL;
hashmap_entry->tail = hashmap_entry->head;
}
else {
hashmap_entry->tail->next = (struct values*) hashmap_allocate(sizeof(struct values));
hashmap_entry->tail = hashmap_entry->tail->next;
hashmap_entry->tail->value = value;
hashmap_entry->tail->next = NULL;
}
}
/* Return the first value from the hashmap*/
struct value_object* hashmap_top(struct hashmapbase* base, unsigned int key) {
struct hashmap** map = base->map;
unsigned int size = base->size;
struct hashmap* hashmap_entry = (struct hashmap*) map[key];
struct value_object* value_obj = NULL;
if(key < size) {
if(hashmap_entry) {
struct values* head = hashmap_entry->head;
if(head) {
value_obj = (struct value_object*) hashmap_allocate(sizeof(struct value_object));
value_obj->value = head->value;
}
}
}
return(value_obj);
}
/* Remove and return the first value from the hashmap*/
struct value_object* hashmap_peek(struct hashmapbase* base, unsigned int key) {
struct hashmap** map = base->map;
unsigned int size = base->size;
struct hashmap* hashmap_entry = (struct hashmap*) map[key];
struct value_object* value_obj = NULL;
if(key < size) {
if(hashmap_entry) {
struct values** head = &hashmap_entry->head;
struct values** tail = &hashmap_entry->tail;
if(head) {
value_obj = (struct value_object*) hashmap_allocate(sizeof(struct value_object));
value_obj->value = (*head)->value;
if(*head == *tail) {
hashmap_deallocate((void*) *head);
*head = NULL;
*tail = NULL;
hashmap_deallocate((void*) hashmap_entry);
map[key] = NULL;
}
else {
struct values* temp = *head;
*head = (*head)->next;
hashmap_deallocate((void*) temp);
}
}
}
}
return(value_obj);
}