Question: How many comparisons of array items do the following loops contain? for (j = 1; j
How many comparisons of array items do the following loops contain?
for (j = 1; j <= n - 1; j++)
{
i = j + 1;
do
{
if (theArray[i] < theArray[j])
swap(theArray[i], theArray[j]);
i++;
} while (i <= n);
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
