Sorting algorithms/Bubble sort - Rosetta Code
Before: +1 +6 +3 +5 +2 +9 +8 +4 +7 +0 After: +0 +1 +2 +3 +4 +5 +6 +7 +8 +9 [edit] ALGOL W begin % As algol W does not allow overloading, we have to have type-specific % % sorting procedures - this bubble sorts an integer array % % as there ......