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

https://github.com/massigy/algoviz

AlgoViz is web based algorithms visualisation for simple sorting algorithms.
https://github.com/massigy/algoviz

bootstrap css git html javascript netlify typescript

Last synced: 3 months ago
JSON representation

AlgoViz is web based algorithms visualisation for simple sorting algorithms.

Awesome Lists containing this project

README

          

# AlgoViz.
AlgoViz is web based algorithms visualisation for simple sorting algorithms.

### Contributors.

- Massiles Ghernaout | @MassiGy
- Jugurtah Ourzik | @JugurtaO

### Website State

[![Netlify Status](https://api.netlify.com/api/v1/badges/a6457340-3361-4a51-8def-a37ca599aac4/deploy-status)](https://app.netlify.com/sites/algosviz/deploys)

### File structure.

```BASH

.
├── doc
├── LICENSE
├── README.md
└── src
├── algorithms
│ ├── bubble_sort.js
│ ├── insertion_sort.js
│ └── selection_sort.js
├── helpers
│ └── sleep.js
└── views
├── index.html
├── script.js
├── search.js
└── style.css

5 directories, 10 files

```

### Contributions.

```BASH

# to get the repo localy
git clone
cd

# fork the repo to your github profil

# to sync with origin
git remote add upstream
git remote add origin

# to setup your locat dev branch
git branch your_local_branch
git checkout your_local_branch

# to add your changes
git add *
git commit -m "+your_local_branch: your commit here"

# push to your forked repo
git push origin your_local_branch

# then fire up a pull request.

```