logo CodeStepByStep logo

SelectionSort1

Language/Type: C# selection sort sorting
Related Links:

Write the state of the elements of the list 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
// values  {29, 17,  3, 94, 46,  8, -4, 12}
List<int> numbers = new List<int> {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.