https://github.com/t-88/map-table
simple hash table with c
https://github.com/t-88/map-table
Last synced: 2 months ago
JSON representation
simple hash table with c
- Host: GitHub
- URL: https://github.com/t-88/map-table
- Owner: t-88
- License: mit
- Created: 2023-07-02T16:16:10.000Z (almost 2 years ago)
- Default Branch: base
- Last Pushed: 2023-07-02T21:40:33.000Z (almost 2 years ago)
- Last Synced: 2025-02-01T23:44:54.919Z (4 months ago)
- Language: C
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Map Table
this is my implementation of hash table, github told me to give a cool name so map table it is.
i use macros to generate code for types that are not list like int , double , float...## Resources
- all thx to this nice [doc](https://github.com/jamesroutley/write-a-hash-table/tree/master/07-appendix)## Limitation
- cant be used with list types, though i think it possible to create custom structs and use macros with them.
- u have to put in mind that its build with macros, there cons and pros to this.