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

https://github.com/massigy/c-graphs

This C project implements a graph data structure
https://github.com/massigy/c-graphs

c cprogramming data-structures gcc git github graph-algorithms makefile

Last synced: 12 months ago
JSON representation

This C project implements a graph data structure

Awesome Lists containing this project

README

          

# C Graphs Data Structure

### File Structure

```Bash
.
├── headers
│ ├── arrays.h
│ ├── graphs.h
│ ├── main.h
│ ├── singleLinkedLists.h
│ └── sys_headers.h
├── README.md
└── src
├── arrays.c
├── graphs.c
├── main.c
├── Makefile
└── singleLinkedLists.c

2 directories, 11 files

```