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

https://github.com/codenameyau/sorting-visualization

Sorting algorithms visualized with HTML5 canvas
https://github.com/codenameyau/sorting-visualization

Last synced: over 1 year ago
JSON representation

Sorting algorithms visualized with HTML5 canvas

Awesome Lists containing this project

README

          

sorting-visualization
=====================

Sorting algorithms visualized with HTML5 canvas

**[Live Demo](http://codenameyau.github.io/sorting-visualization/)**

###Project Reflections
Doing this project in JavaScript was more challenging than expected.

Since JavaScript doesn't support `sleep` or `wait` due to its async nature,
the best option was to:

1. use on `setTimeout` and callbacks
2. convert iterative loops to recursive loops