Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 727 Bytes

README.md

File metadata and controls

30 lines (20 loc) · 727 Bytes

Data structures in C:

this repository contains the implementation of 4 data structures C

Data Structures

DS Folder
Linked List "./1-Linked List"
Doubly Linked List "./2-Doubly Linked List"
Queue "./3-Queue"
Stack "./4-Stack"

▶️ How to run

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