A visualizer for four of the most commonly used in-place sorting algorithms and @DadOfMrLog's hybrid algorithm. Along with snail sort. Size can be changed by pressing... Right arrow: +1 Left arrow: -1 Up arrow: *2 Down arrow: /2 Free to use to all who find it helpful.
Snail sort is a painfully slow sorting algorithm which scans for unsorted pairs of 3, when it finds one, it swaps the first 2, creating a weave like pattern that it has to then fix, making it yet slower... it is MUCH slower than bubble sort. It also fixes the end point because the last bit is unsatisfyingly wrongly placed if I didn't include a small bit of code. Section s