1.
Suppose you have the following list of numbers to sort: [11, 7, 12, 14, 19, 1, 6, 18, 8, 20] which list represents the partially sorted list after three complete passes of selection sort?
- [7, 11, 12, 1, 6, 14, 8, 18, 19, 20]
- Selection sort is similar to bubble sort (which you appear to have done) but uses fewer swaps
- [7, 11, 12, 14, 19, 1, 6, 18, 8, 20]
- This looks like an insertion sort.
- [11, 7, 12, 14, 1, 6, 8, 18, 19, 20]
- This one looks similar to the correct answer but instead of swapping the numbers have been shifted to the left to make room for the correct numbers.
- [11, 7, 12, 14, 8, 1, 6, 18, 19, 20]
- Selection sort improves upon bubble sort by making fewer swaps.