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...
Mar 21, 20222 min read143
