Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Quick sort Exercise: Sort a collection of integers using the Quick sort

C++ Sorting: Exercise-12 with Solution

Write a C++ program to sort a collection of integers using the Quick sort.

Sample Solution:

C++ Code :

#include <iostream>

void quick_Sort(int *nums, int low, int high)
{
    int i = low;
    int j = high;
    int pivot = nums[(i + j) / 2];
    int temp;

    while (i <= j)
    {
        while (nums[i] < pivot)
            i++;
        while (nums[j] > pivot)
            j--;
        if (i <= j)
        {
            temp = nums[i];
            nums[i] = nums[j];
            nums[j] = temp;
            i++;
            j--;
        }
    }
    if (j > low)
        quick_Sort(nums, low, j);
    if (i < high)
        quick_Sort(nums, i, high);
}

int main()
{
    int nums[] =  {125, 0, 695, 3, -256, -5, 214, 44, 55};

    int n = sizeof(nums)/sizeof(nums[0]);

    std::cout << "Before Quick Sort:" << std::endl;
     for (int i = 0; i < n; ++i)
        std::cout << nums[i] <<(std::cout, " ");

    quick_Sort(nums, 0, n);

    std::cout << "\nAfter Quick Sort:" << std::endl;
     for (int i = 0; i < n; ++i)
        std::cout << nums[i] << (std::cout, " ");
    return (0);
}

Sample Output:

Before Quick Sort:
125 0 695 3 -256 -5 214 44 55 
After Quick Sort:
-256 -5 0 3 44 55 125 214 695 

Flowchart:

Flowchart: Sort a collection of integers using the Quick sort

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to sort a collection of integers using the Pancake sort.
Next: Write a C++ program to sort a collection of integers using the Radix sort.

What is the difficulty level of this exercise?