
Enviado em 04/06/2021 - 14:45h
Boa tarde pessoal, tudo bem ?#include <stdio.h>
#include <stdlib.h>
#include <string.h>
struct item
{
int x;
char str[4];
};
struct hashtable
{
int flag;
int tamanho;
struct item *item;
};
struct hashtable *hashtable;
//prototipos ------------------------------------------
void inicia_v(int tam_hash);
int hashcode(int x, int tam_hash);
//void inserir(char *alfanum, int tam_hash);
//main ------------------------------------------
int main()
{
//int tam_hash = 5;
inicia_v(5);
return 0;
}
//funções ------------------------------------------
void inicia_v(int tam_hash) {
int i;
for ( i = 0; i < tam_hash; i++)
{
hashtable[i].flag = 0;
hashtable[i].tamanho = 0;
hashtable[i].item = NULL;
}
}
int hashcode(int x, int tam_hash)
{
return (x) % (tam_hash);
}
Criando um painel de controle (Dashboard) para seu servidor com o Homepage
O Abismo entre o Código e o Chão: Saltos Tecnológicos e a Exclusão Estrutural no Brasil
Instalar e Configurar a santíssima trindade (PAP) no Void Linux
Conhecendo o tmux: Multiplexador de Terminal
Acessando página do Syncthing fora da máquina local
[Resolvido] Meu monitor suporta 100fps. Por que o máximo é 60fps nos jogos?
Como instalo o Clipper/Harbour no Linux Ubuntu (3)









