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

https://github.com/bscarpari/algorithms

Some algorithm exercises in a variety programming languages.
https://github.com/bscarpari/algorithms

algorithms data-structures

Last synced: about 1 year ago
JSON representation

Some algorithm exercises in a variety programming languages.

Awesome Lists containing this project

README

          

# Algorithms

This repository contains my exercises and theoretical content about algorithms and data structures, organized by programming language.

![Algorithm GIF](./giphy.gif)

## Structure

Each programming language has its own folder with exercises and theoretical content.

### Data Structure

- [click here](./c/exercises/lists/ifsul/data-structure): my data structure ifsul discipline

### C

- [exercises](./c/exercises) : practice exercises in C.
- [pdf](./c/pdf/) : theoretical content about programming in C.

### C++

- [exercises](./cpp/exercises) : practice exercises in C++.
- [pdf](./cpp/pdf/) : theoretical content about programming in C++.

### Javascript

- [exercises](./js/exercises) : practice exercises in Javascript.
- [md](./js/md) : theoretical content about programming in Javascript.

## How to run

### C/C++

1. Follow this [tutorial](https://medium.com/@juniortrojilio/preparando-o-vs-code-para-compilar-c-c-no-windows-988f4a91a557) to prepare your VSCode to compile and run C/C++ code.

2. Compile the code with:

```
F6 or FN + F6 (notebook)
```

### Javascript

1. You need to install [CodeRunner](https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner).

2. Then, will will have to run the code with:

```
CTRL + ALT + N
```