-
Notifications
You must be signed in to change notification settings - Fork 1
/
hashtables.c
95 lines (80 loc) · 1.64 KB
/
hashtables.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
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define tam 500
typedef struct node no;
typedef struct hashtable table;
struct node
{
int chave, elemento;
no *prox;
};
struct hashtable{
no *tabela[tam];
};
table* criartabela(int n)
{
table* nova_tab=malloc(sizeof(table));
int i;
for ( i = 0; i < n; i++)
{
nova_tab->tabela[i]=NULL;
}
return nova_tab;
}
void inserir(int valor, int tamanho, table * tab)
{
no* novo_no=malloc(sizeof(no));
novo_no->elemento=valor;
novo_no->prox=NULL;
int chave=valor%tamanho;
if(tab->tabela[chave]==NULL)
{
tab->tabela[chave]= novo_no;
}
else
{
no* aux = tab->tabela[chave];
while (aux->prox!=NULL)
{
aux=aux->prox;
}
aux->prox = novo_no;
}
}
void printrar(int tamanho, table *tab)
{
int i;
for ( i = 0; i < tamanho; i++)
{
printf("%d -> ", i);
no* aux;
aux=tab->tabela[i];
while (aux!=NULL)
{
printf("%d -> ",aux->elemento);
aux = aux->prox;
}
printf("\\\n");
}
printf("\n");
}
int main()
{
int casos, valores, aux, tamanhodahax, quantidade;
table* tabela;
scanf("%d", &casos);
while (casos--)
{
scanf("%d%d", &tamanhodahax, &quantidade);
tabela=criartabela(tamanhodahax);
aux=quantidade;
while (aux--)
{
scanf("%d", &valores);
inserir(valores, tamanhodahax, tabela);
}
printrar(tamanhodahax, tabela);
free(tabela);
}
}