Sort an Array of numbers using selection sort. The selection sort algorithm sorts an array by repeatedly finding the minimum element (lowest value) in the input Array, and then putting it at the correct location in the sorted Array.
Once you're done solving the problem, calculate the average run time and compare it to the average run time for the iterative version.
Input: [3, -1, 5, 2]
Output: [-1, 2, 3, 5]
You may wish to convert your iterative solution to a recursive one. We've included our old solutions in Ruby and JavaScript below:
def selection_sort(arr)
sorted = []
until arr.length == 0
min = arr.min
idx = arr.index(min)
sorted << min
arr.delete_at(idx)
end
sorted
end
function selectionSort(arr) {
const sorted = [];
while (arr.length > 0) {
const min = Math.min(...arr);
const idx = arr.indexOf(min);
sorted.push(min);
arr.splice(idx, 1);
}
return sorted;
}
Use the language of your choosing. We've included starter files for some languages where you can pseudocode, explain your solution and code.
- Rewrite the problem in your own words
- Validate that you understand the problem
- Write your own test cases
- Pseudocode
- Code!
And remember, don't run our tests until you've passed your own!
cd
into the ruby folderruby <filename>.rb
cd
into the javascript foldernode <filename>.js
cd
into the ruby folderbundle install
rspec
cd
into the javascript foldernpm i
npm test