Page 1 of 1

An array of integers is to be sorted from largest to smallest using a selection sort. Assume the array originally contai

Posted: Sun May 15, 2022 11:43 am
by answerhappygod
An array of integers is to be sorted from largest to smallest
using a selection sort. Assume the array originally contains the
following elements:
2617231014
What will it look like after the third pass through the
loop?
a
23 6 10 17 2 14
b
23 17 10 6 2 14
c
23 17 10 14 6 2
d
23 17 14
2 10 6
e
23 17 14 10 2 6