In: Computer Science
Write the numbers in the order they will be in after the first
pass of a:
1) bubble sort
2) selection sort
3) insertion sort
2 4 9 7 5 1 6 3
1) bubble sort: 2 4 7 5 1 6 3 9 2) selection sort: 1 4 9 7 5 2 6 3 3) insertion sort: 2 4 9 7 5 1 6 3