logo CodeStepByStep logo

selectionSort1

Language/Type: Java selection sort sorting
Related Links:

Write the state of the elements of the array below after each of the first 3 passes of the outermost loop of the selection sort algorithm.

// index          0   1   2   3   4   5   6   7
int[] numbers = {29, 17,  3, 94, 46,  8, -4, 12};
selectionSort(numbers);
after pass 1
after pass 2
after pass 3

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.