https://github.com/massigy/c-generic-linked-lists
This C program illustrates an implementation of generic programming using dynamic data structures, like single linked lists in this example.
https://github.com/massigy/c-generic-linked-lists
c cprogramming data-structures gcc git github linked-list makefile
Last synced: 7 months ago
JSON representation
This C program illustrates an implementation of generic programming using dynamic data structures, like single linked lists in this example.
- Host: GitHub
- URL: https://github.com/massigy/c-generic-linked-lists
- Owner: MassiGy
- Created: 2022-10-30T13:23:07.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T21:21:40.000Z (almost 3 years ago)
- Last Synced: 2025-02-07T10:53:29.718Z (9 months ago)
- Topics: c, cprogramming, data-structures, gcc, git, github, linked-list, makefile
- Language: C
- Homepage:
- Size: 58.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C GENERIC LINKED LISTS
### Description
This C program illustrates an implementation of generic programming using dynamic data structures, like single linked lists in this example.### File Architecture
This is acheived using the tree unix command.```BASH
.
├── headers/
│ ├── generic-linked-lists.h
│ ├── main.h
│ └── sys_headers.h
├── README.md
└── src/
├── build/
│ ├── generic-linked-lists.d
│ ├── generic-linked-lists.o
│ ├── main.d
│ └── main.o
├── generic-linked-lists.c
├── main
├── main.c
└── Makefile3 directories, 12 files
```
### Usage
```BASH
git clone https://github.com/MassiGy/cd ./src
make
./main
```