Quick Sort Based on the divide and conquer(D&C) paradigm. Overall procedure Pivot selection: Pick an element, called a pivot, from the list. ex) For each list, select a pivot as the left-most element. Partitioning: reorder the list with the pivot. The elements less than the pivot come before the pivot. The elements greater than the pivot come after the pivot. ex) Partitino the list into two subl..