Question: n this example below the array is meant to be sorted in descending order, correct? In other words, would the signs be flipped if it
n this example below the array is meant to be sorted in descending order, correct? In other words, would the signs be flipped if it was in ascending order?
for (int k=6 ; k >= 0; k--) temp = ar [k]; for (j = k+1; j <=6, j++) { if (ar [j] > temp) break; ar[ j-1 ] = ar[j]; } ar [j-1] = temp; } system.out.print(ar); } } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
