Text
Text
Quick Sort is a sorting algorithm. The algorithm picks a pivot element, rearranges
the array elements in such a way that all elements smaller than the picked pivot
element move to left side of pivot, and all greater elements move to right side.
Finally, the algorithm recursively sorts the sub-arrays on left and right of pivot
element.