https://github.com/abdnh/counting-sort-demo
A JavaScript demo of counting sort
https://github.com/abdnh/counting-sort-demo
counting-sort javascript sorting-algorithms visualization
Last synced: about 1 year ago
JSON representation
A JavaScript demo of counting sort
- Host: GitHub
- URL: https://github.com/abdnh/counting-sort-demo
- Owner: abdnh
- License: mit
- Created: 2021-08-19T02:45:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-23T21:52:40.000Z (almost 5 years ago)
- Last Synced: 2025-01-24T07:29:50.455Z (over 1 year ago)
- Topics: counting-sort, javascript, sorting-algorithms, visualization
- Language: JavaScript
- Homepage: https://abdnh.github.io/counting-sort-demo/
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Counting Sort Demo
A JavaScript demo of [counting sort](https://en.wikipedia.org/wiki/Counting_sort)
that I've written mainly as an exercise in visualizing algorithms and to accompany a [blog post](https://www.abdnh.net/counting-sort) I had been writing.
## TODO
- tidy up the code
## Credit
Inspired by this great site for visual demonstrations of algorithms and data structures: https://www.cs.usfca.edu/~galles/visualization/
They have a counting sort demo too (I copied part of its layout): https://www.cs.usfca.edu/~galles/visualization/CountingSort.html