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
- Host: GitHub
- URL: https://github.com/massigy/c-graphs
- Owner: MassiGy
- Created: 2022-11-13T11:29:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-08T14:06:56.000Z (about 3 years ago)
- Last Synced: 2025-02-07T10:53:29.690Z (about 1 year ago)
- Topics: c, cprogramming, data-structures, gcc, git, github, graph-algorithms, makefile
- Language: C
- Homepage:
- Size: 57.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```