Question
(50) Implement Quick-Sort algorithm in quickSort.cpp, where you are expected to implement three functions, swap(), partition() and quickSort(). You are expected to call swap() within
(50) Implement Quick-Sort algorithm in quickSort.cpp, where you are expected to implement three functions, swap(), partition() and quickSort(). You are expected to call swap() within partition(), to call partition() within quickSort(), and you are not expected to declare/ implement other additional functions nor change the main() function. OPTIONAL: If you dont need/ want to use swap() in your implementation, that is fine. Just delete/ comment it.
//quickSort.cpp:
#include
using namespace std;
// A helper function to facilitate swapping two int elements
// You might want to use this function in the function partition().
void swap(int& a, int& b)
{
}
// This function partitions sub-array A[p..r]. It takes last element in the sub-array, i.e., A[r], as pivot,
// places the pivot element at its correct position in sorted array,
// places all smaller (smaller than pivot) to left of pivot and all greater elements to right of pivot,
// and returns the index of the pivot element (i.e. it's correct position in sorted array)
// You might want to use this function in the function quickSort().
int partition (int A[], int p, int r)
{
}
// using quickSort to sort sub-array A[p..r]
// p is for left index and r is right index of the
// sub-array of A[] to be sorted
void quickSort(int A[], int p, int r)
{
}
int main()
{
cout << "Please enter the length (number of elements) of the input array: ";
int n;
cin >> n;
if(n <= 0) {
cout << "Illegal input array length!" << endl;
return 0;
}
int* A = new int [n];
cout << "Please enter each element in the array" << endl;
cout << "(each element must be an integer within the range of int type)." << endl;
for(int i=0; i cout << "A[" << i << "] = "; cin >> A[i]; } cout << "Given array A[] is: "; for(int i=0; i cout << A[i] << ","; cout << A[n-1] << endl; quickSort(A, 0, n-1); cout << "After quickSort, sorted array A[] is: "; for(int i=0; i cout << A[i] << ","; cout << A[n-1] << endl; delete [] A; return 0; }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started