Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a program that creates three identical arrays, list1, list2, and list3 of 5000 elements. The program then sorts list1 using bubble sort, list2 using

Write a program that creates three identical arrays, list1, list2, and list3 of 5000 elements. The program then sorts list1 using bubble sort, list2 using selection sort, and list3 using insertion sort and outputs the number of comparisons and item assignments made by each sorting algorithm. I need help building the necessarry function. What I need help with is located after the // symbols.

**********functions.cpp********** #include #include #include #include

inline void fillArray(int list[], int length) { srand(time(0));

for (int i = 0; i < length; i++) list[i] = rand() % 20000; }

inline void copyArray(int list1[], int list2[], int length) { for (int i = 0; i < length; i++) list2[i] = list1[i]; }

inline void bubbleSort(int list[], int length, int& comp, int& assign) { // write a function using bubble sort to sort the provided array // assign "comp" to the number of comparisons required // assign "assign" to the number of item assignments

// initialize comp and assign to 0 comp = 0; assign = 0; int i, j; for (i = 0; i < length-1; i++) { // Last i elements are already in place for (j = 0; j < length-i-1; j++) { // increment comp for the comparison b/w list[j] and list[j+1] comp ++; if (list[j] > list[j+1]) { int t = list[j]; list[j] = list[j+1]; list[j+1] = t; // increment assign by 3 for swapping list[j] and list[j+1] assign += 3; } } } }

inline void selectionSort(int list[], int length, int& comp, int& assign) { // write a function using selection sort to sort the provided array // assign "comp" to the number of comparisons required // assign "assign" to the number of item assignments

// initialize comp and assign to 0 assign = 0, comp = 0; int i, j, min_i;

// One by one move boundary of unsorted subarray for (i = 0; i < length-1; i++) { // Find the minimum element in unsorted array min_i = i; for (j = i+1; j < length; j++) { // increment comp for the comparison b/w list[j] and list[min_i] comp ++; if (list[j] < list[min_i]) min_i = j; }

// Swap the found minimum element with the first element int t = list[min_i]; list[min_i] = list[i]; list[i] = t; // increment assign by 3 for swapping list[min_i] and list[i] assign += 3; } }

inline void insertionSort(int list[], int length, int& comp, int& assign) { // write a function using insertion sort to sort the provided array // assign "comp" to the number of comparisons required // assign "assign" to the number of item assignments

// initialize comp and assign to 0 comp = 0; assign = 0; int i, key, j; for (i = 1; i < length; i++) { key = list[i]; // increment assign by 1 since the value of list[i] is copied to key assign ++; j = i-1;

/* Move elements of arr[0..i-1], that are greater than key, to one position ahead of their current position */ while (j >= 0 && list[j] > key) { // increment comp for the while condition comp += 1; list[j+1] = list[j]; assign ++; j = j-1; } comp ++; // again increment comp when the while loop is exited // increment assign by 1 since the value of key is copied to list[j+1] assign ++; list[j+1] = key; } }

**********main.cpp********** #include #include"functions.cpp" using namespace std;

int main() { int list1[5000]; int list2[5000]; int list3[5000];

int compBubbleSort = 0, compSelectionSort = 0, compInsertionSort = 0; int assignBubbleSort = 0, assignSelectionSort = 0, assignInsertionSort = 0;

fillArray(list1, 5000); copyArray(list1, list2, 5000); copyArray(list1, list3, 5000);

bubbleSort(list1, 5000, compBubbleSort, assignBubbleSort); selectionSort(list2, 5000, compSelectionSort, assignSelectionSort); insertionSort(list3, 5000, compInsertionSort, assignInsertionSort);

cout << "Number of comparisons---" << endl; cout << " Bubble sort: " << compBubbleSort << endl; cout << " Selection sort: " << compSelectionSort << endl; cout << " Insertion sort: " << compInsertionSort << endl << endl;

cout << "Number of item assignments---" << endl; cout << " Bubble sort: " << assignBubbleSort << endl; cout << " Selection sort: " << assignSelectionSort << endl; cout << " Insertion sort: " << assignInsertionSort << endl << endl;

return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Fundamentals Of Database Management Systems

Authors: Mark L. Gillenson

3rd Edition

978-1119907466

More Books

Students also viewed these Databases questions

Question

Describe several uses for a position description.

Answered: 1 week ago

Question

3. Would you say that effective teamwork saved their lives?

Answered: 1 week ago