Quick Sort Algorithm quickSort(array, leftmostIndex, rightmostIndex)if(leftmostIndex < rightmostIndex) pivotIndex <-partition(array,leftmostIndex, rightmostIndex)quickSort(array, leftmostIndex, pivotIndex -1)quickSort(array, pivotIndex, rightmostIndex)partition(array, leftmostIndex, rightmostIndex)setright...