https://github.com/mathvaillant/data-structures-in-c
Data Structures in C
https://github.com/mathvaillant/data-structures-in-c
c makefile
Last synced: 10 months ago
JSON representation
Data Structures in C
- Host: GitHub
- URL: https://github.com/mathvaillant/data-structures-in-c
- Owner: mathvaillant
- Created: 2024-02-13T22:12:10.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-24T11:14:56.000Z (over 2 years ago)
- Last Synced: 2025-07-19T00:41:56.682Z (11 months ago)
- Topics: c, makefile
- Language: C
- Homepage:
- Size: 22.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Data Structures in C
This repository contains implementations of various data structures in the C programming language.
## Structures Implemented
- [x] Singly Linked Lists
- [x] Doubly Linked Lists
- [x] Stacks
- [x] Queues
- [x] Binary Search tress
- [x] Binary heaps
- [x] Hash Tables
- [x] Graphs
## Getting Started
### Prerequisites
- C compiler such as `gcc`
### Installation
1. Clone this repository to your local machine:
```bash
git clone https://github.com/mathvaillant/data-structures-in-c.git
```
2. Replace on the Makefile the FILE variable with the name of the C file desired to run.
3. Compile the code using the Makefile:
```bash
make
```
### Usage
Execute the compiled program:
```bash
./