在AS3中对多维数组排序(数字)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在AS3中对多维数组排序(数字)相关的知识,希望对你有一定的参考价值。

I have fixed and improved some code I found on the Internet
  1. public function orderNumerically(a, b):Number{
  2. // Change a[0] & b[0] by a[i] & b[i]
  3. // (where i is the array index you want to use to sort the multidimensional array)
  4. var num1 = Number(a[0]);
  5. var num2 = Number(b[0]);
  6. if(num1<num2){
  7. return -1;
  8. }else if(num1>num2) {
  9. return 1;
  10. }else{
  11. return 0;
  12. }
  13. }
  14. the_array.sort(orderNumerically);

以上是关于在AS3中对多维数组排序(数字)的主要内容,如果未能解决你的问题,请参考以下文章

ActionScript 3 在AS3中排序多维数组(按字母顺序)

如何在javascript中对多维数组进行排序

如何在 PHP 中对多维数组进行排序 [重复]

如何在 AS3 中对 datagrid 列进行排序?

多维数组c#数字排序[关闭]

如何在javascript中对字母数字数组进行排序[重复]