0
1.9kviews
Explain Quick sort algorithm and write C program
1 Answer
| written 3.8 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 …