I have an assignment in my Advanced C++ class using Visual C++. I have most of it but there is a problem. After each pass it is supposed to display the results. I can get it to display the unsorted list, display the sorted list but not after each pass. Can anyone help? Here is the code I have so far. Thank you!
// This program uses the bubble sort algorithm to sort an
// array in ascending order.
#include <iostream>
using namespace std;
// Function prototypes
void sortArray(int [], int);
void showArray(int [], int);
int main()
{
// Array of unsorted values
int values[6] = {7, 2, 3, 8, 9, 1};
// Display the values.
cout << "The unsorted values are:\n";
showArray(values, 6);
// Sort the values.
sortArray(values, 6);
// Display them again.
cout << "The sorted values are:\n";
showArray(values, 6);
return 0;
}
//***********************************************************
// Definition of function sortArray *
// This function performs an ascending order bubble sort on *
// array. size is the number of elements in the array. *
//***********************************************************
void sortArray(int array[], int size)
{
bool swap;
int temp;
do
{
swap = false;
for (int count = 0; count < (size - 1); count++)
{
if (array[count] > array[count + 1])
{
temp = array[count];
array[count] = array[count + 1];
array[count + 1] = temp;
swap = true;
}
}
} while (swap);
}
//*************************************************************
// Definition of function showArray. *
// This function displays the contents of array. size is the *
// number of elements. *
//*************************************************************
void showArray(int array[], int size)
{
for (int count = 0; count < size; count++)
cout << array[count] << " ";
cout << endl;
}