-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHashMap.c
136 lines (101 loc) · 2.83 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
133
134
135
136
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define TAM_MAX 20
typedef struct NO {
char nome[30];
int telefone;
struct NO* prox;
} NO;
int hashLoseLose(char nome[30]) {
int hash = 0;
for (int i = 0; i < 30 && nome[i] != '\0'; i++) {
hash += nome[i];
}
return hash % 20;
}
int hasKey(NO* HASHMAP[TAM_MAX], char chave[30]) {
int hash = hashLoseLose(chave);
NO* ponteiro = HASHMAP[hash];
while (ponteiro != NULL) {
if (strcmp(chave, ponteiro->nome) == 0) {
return 1;
}
ponteiro = ponteiro->prox;
}
return 0;
}
int set(NO* HASHMAP[TAM_MAX], char chave[30], int valor) {
NO* ponteiro = (NO*)malloc(sizeof(NO));
if (ponteiro == NULL) {
printf("Erro ao alocar memória\n");
return 0;
}
strcpy(ponteiro->nome, chave);
ponteiro->telefone = valor;
ponteiro->prox = NULL;
int hash = hashLoseLose(chave);
if (HASHMAP[hash] == NULL) {
HASHMAP[hash] = ponteiro;
} else {
NO* percorrer = HASHMAP[hash];
while (percorrer->prox != NULL) {
percorrer = percorrer->prox;
}
percorrer->prox = ponteiro;
}
return 1;
}
NO* get(NO* HASHMAP[TAM_MAX], char chave[30]) {
int hash = hashLoseLose(chave);
NO* ponteiro = HASHMAP[hash];
while (ponteiro != NULL) {
if (strcmp(chave, ponteiro->nome) == 0) {
return ponteiro;
}
ponteiro = ponteiro->prox;
}
return NULL;
}
int remove_(NO* HASHMAP[TAM_MAX], char chave[30]) {
int hash = hashLoseLose(chave);
NO* atual = HASHMAP[hash];
NO* anterior = NULL;
while (atual != NULL) {
if (strcmp(chave, atual->nome) == 0) {
if (anterior == NULL) {
HASHMAP[hash] = atual->prox;
} else {
anterior->prox = atual->prox;
}
free(atual);
return 1;
}
anterior = atual;
atual = atual->prox;
}
return 0;
}
int main() {
NO* HASHMAP[TAM_MAX] = {NULL};
char a[30] = "joao";
char b[30] = "jooa";
char c[30] = "ooja";
char d[30] = "jaoo";
set(HASHMAP, a, 3123123);
set(HASHMAP, b, 3123123);
set(HASHMAP, c, 3123123);
set(HASHMAP, d, 3123123);
char e[30] = "oo";
NO* resultado2 = get(HASHMAP, a);
NO* resultado3 = get(HASHMAP, b);
NO* resultado4 = get(HASHMAP, c);
NO* resultado5 = get(HASHMAP, d);
remove_(HASHMAP, a);
//if (resultado2) printf("%s\n", resultado2->nome);
//if (resultado3) printf("%s\n", resultado3->nome);
//if (resultado4) printf("%s\n", resultado4->nome);
//if (resultado5) printf("%s\n", resultado5->nome);
//else printf("Chave 'oo' não encontrada\n");
return 0;
}