0
4.6kviews
Explain the quick sort algorithm. Evaluate complexity with suitable example.
1 Answer
| written 3.9 years ago by |
Quick Sort : -
Quick sort is a highly efficient sorting algorithm and is based on partitioning of array of data into smaller arrays.
A large array is partitioned into two arrays one of which holds values smaller than the specified value, say pivot, based on which the partition is …