//排序
import console.int;
//创建数组,可以用分号(或逗号)分隔数组成员。
var array = {2,46,5,17,1,2,3};
//table.sort() 函数用于排序数组。
table.sort(array);
console.dumpTable(array);
//自定义排序
table.sort(array,function(next){
//可以用 > 或 < 比较,但不能用 >= 或 <= ,元素相等不能返回 true。
return owner > next;
})
console.dumpTable(array);
/*
排序数组用 table.sort() 函数就可以了。
后面范例中收录的其他排序算法仅供参考。
*/