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

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

Awesome Lists containing this project

README

          

# Shell Sort Algorithm Visualization
Shell Sorting Algorithm Animations

![](demo.gif)

[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)