Question: In C++. Write a program to read integers into an array and then sort the array using selection sort, where you find the smallest element

In C++. Write a program to read integers into an array and then sort the array using selection sort, where you find the smallest element in the array and exchange it with the first element, and then find the second smallest element and exchange it with the second element, etc., until the entire array is sorted.

Have your program include four functions, besides main, which perform the following functions:

1. Read in an undetermined number of array elements

2. Print the array elements (call this function both before and after the elements are sorted)

3. Sort the array elements

4. Swap two elements of an array (this function will be called by your sort function)

Which of these four functions should have the array passed in as const?

Where should the local prototypes of each these functions be places?

Use #define to declare the maximum array size as a constant MAXSIZE with a value of 10.

Run your program using the following sets of input:

1. 5 12 -7 3 0

2. 1 2 3 4 5 7 6

3. Enter more values than the declared array size. Display an appropriate error message and sort the first 10 values anyway.

4. Enter an invalid (nonnumeric) character. Display an appropriate error message and flush the bad data and continue reading until end-of-file or the array is full

structured code (e.g., no goto, break (except in a switch), continue, etc. statements)

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!