A visualizer for three of the most commonly used in-place sorting algorithms and @DadMrLog's hybrid algorithm along with powersort 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.
Powersort is a form of insertion sort that spaces the insertion points based on powers Type 2 powersort multiplies the number of insertion sorts by 2 and divides the space by 2 Type 3 divides by 3 and multiplies by 3, you get the drill. Each type is efficient for its powers Type 2 is efficient on a number of items that is a power of 2 Type 3, you get the drill already. A type n powersort will need p+2 runs to sort a n^p size list.