1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
|
#include <iostream>
#include <cstdlib>
#include <ctime>
#include <iomanip>
using namespace std;
void fillArray(int[], int);
void displayArray(int[], int);
void copyArray(int[], int[], int);
void bubbleSort(int[], int);
void selectionSort(int[], int);
void swapItems(int[], int, int);
bool lessThan(int, int);
bool greaterThan(int, int);
void resetStats();
void displayStats();
int numSwaps = 0;
int numComparisons = 0;
int main()
{
const int SIZE = 100;
int bubbleArray[SIZE];
int selectionArray[SIZE];
// Fill the arrays with identical sets of random numbers
fillArray(bubbleArray, SIZE);
copyArray(bubbleArray, selectionArray, SIZE);
// Display the original contents of the array
cout << "Unsorted Array" << endl;
cout << "--------------" << endl;
displayArray(bubbleArray, SIZE);
cout << endl;
// Perform Bubble Sort and display results
resetStats();
bubbleSort(bubbleArray, SIZE);
cout << "BubbleSort" << endl;
cout << "----------" << endl;
displayArray(bubbleArray, SIZE);
cout << endl;
displayStats();
cout << endl;
// Perform Selection Sort and display results
resetStats();
selectionSort(selectionArray, SIZE);
cout << "SelectionSort" << endl;
cout << "-------------" << endl;
displayArray(selectionArray, SIZE);
cout << endl;
displayStats();
cout << endl;
system("pause");
return 0;
}
// Array management functions
void fillArray(int arr[], int size)
{
unsigned int seed = static_cast<int>(time(0));
srand(seed);
for (int index = 0; index < size; index++)
{
arr[index] = rand() % 1000;
}
}
void copyArray(int source[], int destination[], int size)
{
for (int index = 0; index < size; index++)
{
destination[index] = source[index];
}
}
void displayArray(int arr[], int size)
{
for (int index = 0; index < size; index++)
{
cout << setw(4) << arr[index];
if (index % 10 == 9)
cout << endl;
}
}
// Bubble Sort algorithm
void bubbleSort(int arr[], int size)
{
int maxElement = 0;
for (int index = 0; index < maxElement; maxElement--)
{
if (greaterThan(index, index + 1))
{
swapItems(arr, index, index + 1);
}
}
// implement bubbleSort using the greaterThan
// and swapItems functions
// Selection Sort algorithm
void selectionSort(int arr[], int size)
{
int maxElement = 0;
for (int index = 0; index < maxElement; maxElement--)
{
if (lessThan(index, index + 1))
{
swapItems(arr, index, index + 1);
}
}
}
// implement selectionSort using the lessThan
// and swapItems functions
}
// Basic operations with counters
void swapItems(int arr[], int index1, int index2)
{
numSwaps++;
int temp = arr[index1];
arr[index1] = arr[index2];
arr[index2] = temp;
}
bool lessThan(int num1, int num2)
{
numComparisons++;
return num1 < num2;
}
bool greaterThan(int num1, int num2)
{
numComparisons++;
return num1 > num2;
}
// Functions for managing statistics
void resetStats()
{
numSwaps = 0;
numComparisons = 0;
}
void displayStats()
{
cout << "Swaps: " << numSwaps << " Comparisons: " << numComparisons << endl;
}
|