https://github.com/shystruk/shell-sort-algorithm-visualization
📊 Shell Sorting Algorithm Animations
https://github.com/shystruk/shell-sort-algorithm-visualization
algorithms javascript shell-sort
Last synced: 6 months ago
JSON representation
📊 Shell Sorting Algorithm Animations
- Host: GitHub
- URL: https://github.com/shystruk/shell-sort-algorithm-visualization
- Owner: shystruk
- License: mit
- Created: 2015-02-03T11:22:02.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-11-15T09:24:53.000Z (about 8 years ago)
- Last Synced: 2025-06-01T13:33:38.024Z (9 months ago)
- Topics: algorithms, javascript, shell-sort
- Language: JavaScript
- Homepage:
- Size: 255 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Shell Sort Algorithm Visualization
Shell Sorting Algorithm Animations

[Shellsort](http://en.wikipedia.org/wiki/Shellsort), also known as the **diminishing increment sort**, is one of the oldest sorting algorithms, named after its inventor Donald. L. Shell (1959).
The idea is:
- calculate gaps;
- starting from the beginning of the list;
- change their positions if they are not in the right order;
- continue until element on the left is smaller than current element;
- repeat with the smaller gap.
Open **index.html** file and enter numbers in input fields. If is not enough input fields click to **+** button and you will be have more.
**--SORT--**
You will see step by step sort of Shell Method.
Information
============
If you have questions, problems or improvements, create issues and we will discuss.
Thank you!
License
========
[MIT License](http://opensource.org/licenses/mit-license.php)