Instructions: - Click the upper half of the Stage to either shuffle or sort the list - Mouse over to the lower half of the Stage to access the options/HUD - Click the lower half of the Stage to switch between the two pages of options - Hold the mouse while sorting to go faster This project will visualize different sorting algorithms. There is sound, so you may want to turn your volume down. “Time” does not show how much time has elapsed, but instead gives an estimate for the sorting time of the current algorithm and data relative to other algorithms. It is not meant to give an absolute time, but instead to compare different algorithms and it may not always be accurate. Credits: - Stooge Sort: https://en.wikipedia.org/wiki/Stooge_sort - Bubble Sort: created by @-Rex- for this project - Selection Sort: created by @-Rex- for this project - Double Selection Sort: created by @-Rex- for this project - Insertion Sort: taken from the @-Rex- quicksort script - Shellsort: https://en.wikipedia.org/wiki/Shellsort - Heapsort: https://en.wikipedia.org/wiki/Heapsort - Merge Sort: created by @-Rex- for this project - -Rex- Merge Sort: https://scratch.mit.edu/projects/378893414 - Quicksort: https://en.wikipedia.org/wiki/Quicksort - TheLogFather Quicksort: https://scratch.mit.edu/projects/48447854 - -Rex- Quicksort: https://scratch.mit.edu/projects/391085754 Changelog: v1.1 (2020-05-13): + Added a new display type + Added stooge sort and double selection sort + Added warnings when choosing slower sorts - Made bubble sort slightly faster by decreasing the number of reads - Changed how colors from the previous frame are cleared - The screen is now forced to refresh w/ sound every 500 ms - Empty items in the auxiliary array are now drawn - Renamed “height display” to “height scale” - Height Scale now updates immediately in the options page v1.0.1 (2020-05-03): - Prevented switching height display after shuffling v1.0 (2020-05-02): - Released