Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 939 Bytes

File metadata and controls

27 lines (20 loc) · 939 Bytes

Shell Sort Algorithm Visualization

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.

Information

If you have questions, problems or improvements, create issues and we will discuss.
Thank you!

License

MIT License