Quick Sort
What is Quick Sort?
Quick Sort is a Divide and Conquer algorithm based on Recursion. It works around taking a pivot and placing it at the correct index.
How it works?
In this sorting algorithm we compare all the elements of the array to the pivot we...
varchasvh.hashnode.dev2 min read