User:Emry/Quicksort My Quicksort Notes
From NexusCrossing
- Check for the lenghth of the list. If the Length is 1 or 0, return the list unmodified.
- Choose a cell at random. That cell becomes the pivot.
- Use the pivot as the center point to split the list into two lists.
- Run Quick Sort on both lists
