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

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.

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.txt

4 directories, 17 files

```

### Usage

```BASH
git clone https://github.com/MassiGy/

cd /src

make && ./main

```