this repository contains the implementation of 4 data structures C
DS | Folder |
---|---|
Linked List | "./1-Linked List" |
Doubly Linked List | "./2-Doubly Linked List" |
Queue | "./3-Queue" |
Stack | "./4-Stack" |
First of all , i got to mention that there are two types of src for each data structure .. "Everything in one file" && the modular src
for "Everything in one file"
gcc '.\everything in one file\main.c' -o executable
for the modular src
gcc *.c -o executable