Question: Consider a sorting algorithm that takes as input an Array A of n numbers. It sorts the array by finding the smallest number in A

Consider a sorting algorithm that takes as input an Array A of n numbers. It sorts the array by finding the smallest number in A and swaps it with A[1]. Then it looks for the second smallest number in A[2...n] and swaps it with A[2]. Continue this process for the remaining elements until the array is sorted. a) Write the python code for this algorithm that sorts the array A in-place (in the pr1.py file) 20 points Give the worst case and the best case running times of this algorithm in -notation, 10 points b)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
