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);
}
Enviar mensagem ao usuário trabalhando com as opções do php.ini
Meu Fork do Plugin de Integração do CVS para o KDevelop
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Compartilhamento de Rede com samba em modo Público/Anônimo de forma simples, rápido e fácil
Cups: Mapear/listar todas as impressoras de outro Servidor CUPS de forma rápida e fácil
Criando uma VPC na AWS via CLI
Tem como instalar o gerenciador AMD Adrenalin no Ubuntu 24.04? (15)
Tenho dois Link's ( IP VÁLIDOS ), estou tentando fazer o failover... (0)
Pendrive não formata de jeito nenhum (4)