Final answer:
Quick Sort partitions a list by selecting a pivot element and arranging all elements less than it to the left and all greater to the right, creating sublists for recursive sorting.
Step-by-step explanation:
Quick Sort splits the list by partitioning elements around a pivot, where the pivot is an element chosen from the array (it could be the first, last, middle, or a random element). The partition process involves moving all elements less than the pivot to its left and all greater elements to its right. This effectively creates two sublists which are then recursively sorted using the same algorithm.