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

https://github.com/ir33k/mhm

My Hash Map single header C lib
https://github.com/ir33k/mhm

Last synced: 3 months ago
JSON representation

My Hash Map single header C lib

Awesome Lists containing this project

README

        

My Hash Map using Open addressing [1] with Linear probing [2] and Lazy
deletion [3]. Documentation and licence can be found in mhm.h.

[1] https://en.wikipedia.org/wiki/Open_addressing
[2] https://en.wikipedia.org/wiki/Linear_probing
[3] https://en.wikipedia.org/wiki/Lazy_deletion