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.
- Host: GitHub
- URL: https://github.com/massigy/algoviz
- Owner: MassiGy
- License: mit
- Created: 2022-11-26T18:12:13.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-03-11T14:31:03.000Z (over 2 years ago)
- Last Synced: 2025-06-05T01:57:45.822Z (5 months ago)
- Topics: bootstrap, css, git, html, javascript, netlify, typescript
- Language: JavaScript
- Homepage: https://algosviz.netlify.app/
- Size: 1.21 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
[](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.css5 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.
```