Visual Sorters
This program displays the process that a sorting algorithm takes to sort an array. The red line shows which part of the array is being swapped. Below you can find the algorithms included in this program, and more can be added if need be.
Get it on GitHubQuick sort is a recursive sorting algorithm that divides the array into smaller sorting problems. By selecting a pivot and sorting elements to each side, the total array will eventually sort.