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.
- Host: GitHub
- URL: https://github.com/bscarpari/algorithms
- Owner: bscarpari
- License: mit
- Created: 2023-10-23T23:27:18.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-10T00:21:13.000Z (over 1 year ago)
- Last Synced: 2025-01-13T17:17:26.476Z (about 1 year ago)
- Topics: algorithms, data-structures
- Language: C
- Homepage:
- Size: 23.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Algorithms
This repository contains my exercises and theoretical content about algorithms and data structures, organized by programming language.

## 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
```