https://github.com/federicoponzi/hashtable
An associative array implementation in C.
https://github.com/federicoponzi/hashtable
Last synced: about 1 year ago
JSON representation
An associative array implementation in C.
- Host: GitHub
- URL: https://github.com/federicoponzi/hashtable
- Owner: FedericoPonzi
- Created: 2022-05-25T08:40:18.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-05-25T09:31:08.000Z (about 4 years ago)
- Last Synced: 2025-06-25T09:03:46.991Z (about 1 year ago)
- Language: C++
- Size: 778 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A simple hashmap implementation
### Collision handling.
Open addressing with double hashing. Double hashing makes use of two hash functions
to calculate the index an item should be stored at after i collisions. What happens when the array is full?
### Naming convention
```
ht__
```
for a function that works on a struct:
```
ht___
```