Question: Consider the following function bubbleSort. int bubbleSort(int num[], int numel) { int i, j, temp, moves = 0; for (i = 0; i < (numel
Consider the following function bubbleSort.
int bubbleSort(int num[], int numel)
{
int i, j, temp, moves = 0;
for (i = 0; i < (numel - 1); i++)
{
for (j = 1; j < numel; j++)
{
//missing code
}
}
}
A. Complete the missing code:- (4 Points)
B. Assume that the array sort[] which has 8 elements, initially contains the values:-
| 22 | 5 | 67 | 98 | 45 | 32 | 101 | 99 |
Determine the values in the array sort[] after four iterations of the outer for loop in the bubble sort function. (4 Points)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
