Quote:
Originally Posted by Inverness
How dare you place any code outside of a function 
And you're making global variables.
|
Zzz...
PHP Code:
function onCreated()
{
temp.dataSet = {1, 6, 4, 2, 5, 8, 20, 100, 54, 1000, 523};
echo(temp.dataSet);
temp.dataSet = selectionSort(temp.dataSet);
echo(temp.dataSet);
temp.dataSet = null;
temp.dataSet.destroy();
}
function selectionSort(temp.data)
{
for (a = 0; a < temp.data.size() - 1; a++)
{
for (b = a + 1; b < temp.data.size(); b++)
{
if (temp.data[b] < temp.data[a])
{
result = temp.data[b];
temp.data[b] = temp.data[a];
temp.data[a] = result;
}
}
}
return temp.data;
}