An open API service indexing awesome lists of open source software.

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.

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___
```