An open API service indexing awesome lists of open source software.

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

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
./