https://github.com/matheus-hrm/my_hashtable
my implementation of a custom hash table with the murmur hash function in C
https://github.com/matheus-hrm/my_hashtable
Last synced: 2 months ago
JSON representation
my implementation of a custom hash table with the murmur hash function in C
- Host: GitHub
- URL: https://github.com/matheus-hrm/my_hashtable
- Owner: matheus-hrm
- Created: 2024-06-08T21:18:57.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-06-16T04:22:02.000Z (11 months ago)
- Last Synced: 2025-01-07T22:10:04.565Z (4 months ago)
- Language: C
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Custom Hastable
### Compiling
```bash
gcc -o main.c hashtable.c
```Esse codigo implementa uma funcao hash murmurhash em uma lista aleatoria de numeros de 1 ate 9999, salvando os numeros em uma hashtable, para buscar por numeros use "./hash 'numero' ", se o numero for encontrado, sera mostrado sua posicao na tabela e o tempo gasto para realizacao da busca