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
- Host: GitHub
- URL: https://github.com/ir33k/mhm
- Owner: ir33k
- Created: 2023-10-29T20:41:25.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-02T05:56:05.000Z (over 1 year ago)
- Last Synced: 2023-11-02T06:31:10.049Z (over 1 year ago)
- Language: C
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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