Question: Having trouble making a C++ program were you are given an array containing either character a or z in random order. Write a program that

Having trouble making a C++ program were you are given an array containing either character a or z in random order. Write a program that shifts all the as to be after all zs by using selection sort algorithm.

For instance, if char input[] = {z, a, a, z, z, a, z, a, a, z, a}

Then output is: {z, z, z, z, z, a, a, a, a, a, a}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!