Question: Program 5 is actually two programs. The first, Program 5.1 is a bubble sort (33 points). The second, 5.2 is a merge sort (67 points).

Program 5 is actually two programs. The first, Program 5.1 is a bubble sort (33 points). The second, 5.2 is a merge sort (67 points). You are also going to insert timing logic in to see how the two program compare We will discuss the algorithms in class but they are included here as pseudocode procedure bubbleSort A list of sortable items) n length(A) repeat swapped = false for i = 1 to n-1 inclusive do if Ai-1 A[i] then swap(A[i-1, A[i]) swapped = true end if end for n=n-1 until not swapped end procedure
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
