I've been trying to change my bubblesort algorithm to selection sort but I am struggling.
Here's the bubble sort...
For K= 0 to n – 2
For j = 0 to n – k - 2
If item[j] > item [j + 1]
temp = item[j]
item[j] = item[j+1]
item[j + 1] = temp
end if
end for
end for
end bubbleSort
Here's what a friend gave me in javascript and I was wondering if someone could help turn it into pseudo code? Thanks ...
var arr = new Array(23, 19, 35, 12, 30);
temp = 0;
for (k = 0; k < arr.length - 1; k++) {
for (j = k + 1; j < arr.length; j++) {
if (arr[k] > arr[j]) {
temp = arr[k];
arr[k] = arr[j];
arr[j] = temp;
}
}
}
for (k = 0; k < arr.length; k++)
alert(arr[k]);
Thanks everyone, I'm new to programming and algorithms just get me!
pythonor another REPL (ask your tutor). Later on, when you have the basic knowledge, you can come back here and ask specific, narrow questions :) Good luck! – Magnus Hoff Nov 8 '12 at 16:05