https://github.com/massigy/c-hash-tables
This C project implments a Hash Table data structure.
https://github.com/massigy/c-hash-tables
c cprogramming data-structures gcc git github hashtable linked-list makefile
Last synced: about 2 months ago
JSON representation
This C project implments a Hash Table data structure.
- Host: GitHub
- URL: https://github.com/massigy/c-hash-tables
- Owner: MassiGy
- Created: 2022-11-07T22:01:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T21:09:44.000Z (over 2 years ago)
- Last Synced: 2025-02-07T10:53:29.677Z (3 months ago)
- Topics: c, cprogramming, data-structures, gcc, git, github, hashtable, linked-list, makefile
- Language: C
- Homepage:
- Size: 157 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## C Hash Tables
#### File structure
```BASH
.
├── headers
│ ├── generic-linked-lists.h
│ ├── hash-tables.h
│ ├── main.h
│ └── sys_headers.h
├── README.md
└── src
├── build
│ ├── generic-linked-lists.d
│ ├── generic-linked-lists.o
│ ├── hash-tables.d
│ ├── hash-tables.o
│ ├── main.d
│ └── main.o
├── generic-linked-lists.c
├── hash-tables.c
├── main
├── main.c
├── Makefile
└── ressources
└── words.txt4 directories, 17 files
```
### Usage
```BASH
git clone https://github.com/MassiGy/cd /src
make && ./main
```