Shell Sorting Algorithm Animations
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.
If you have questions, problems or improvements, create issues and we will discuss.
Thank you!