https://github.com/claudemuller/hashtable.c
A hash table implementation in C
https://github.com/claudemuller/hashtable.c
c data-structures hashmap hashtable
Last synced: 12 months ago
JSON representation
A hash table implementation in C
- Host: GitHub
- URL: https://github.com/claudemuller/hashtable.c
- Owner: claudemuller
- Created: 2025-01-31T06:44:42.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-01T10:46:51.000Z (about 1 year ago)
- Last Synced: 2025-02-14T18:33:26.910Z (about 1 year ago)
- Topics: c, data-structures, hashmap, hashtable
- Language: C
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hash Table
A naive hash table implementation written in C.
# Requirements
- [gcc](https://gcc.gnu.org/)
- [make](https://www.gnu.org/software/make/)
# Build
```bash
make build
```
# Run
```bash
make run
```
# Build a Debug Binary
```bash
make debug-build
```
# Start `lldb` or `gdb` With Debug Binary
```bash
make debug
```