Flex 3 Actionscript 数组减法函数

发布于 2024-11-09 03:27:05 字数 167 浏览 4 评论 0原文

谁能告诉我如何比较两个数组并删除 ActionScript 中的常用术语?

例如:

Array1 = [2,4,6,8,10,12]

Array2 = [1,2,3,4,5,6,7,8,9,10,11]

Array1 - Array2 = [12]

Can anyone tell me how to compare two arrays and delete the common terms in ActionScript?

Eg:

Array1 = [2,4,6,8,10,12]

Array2 = [1,2,3,4,5,6,7,8,9,10,11]

Array1 - Array2 = [12]

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

冬天旳寂寞 2024-11-16 03:27:05

如果您使用 ActionLinq,则可以很容易地进行如下集合数学运算:

var array1:Array = [2,4,6,8,10,12];
var array2:Array = [1,2,3,4,5,6,7,8,9,10,11];

var subtraction:Array = Enumerable.from(array1)
                        .except(Enumerable.from(array2))
                        .toArray();

If you use ActionLinq, it is very easy to do set mathematics like this:

var array1:Array = [2,4,6,8,10,12];
var array2:Array = [1,2,3,4,5,6,7,8,9,10,11];

var subtraction:Array = Enumerable.from(array1)
                        .except(Enumerable.from(array2))
                        .toArray();
待天淡蓝洁白时 2024-11-16 03:27:05

您可以使用自定义函数进行过滤。
这不是过滤数组差异的优化方法,但它可以完成工作。

subtraction = Array1.filter(function(item:*, index:int, arr:Array){
  var i:int;
  var l:int;
  l = Array2.length;
  for ( i=0; i < l; i++ )
  {
    if ( Array2[i] == item )
    {
      return false;
    }
  }
  return true;
});

You can filter using a custom function.
This is not an optimized way of filtering a difference of arrays, but it'll get the job done.

subtraction = Array1.filter(function(item:*, index:int, arr:Array){
  var i:int;
  var l:int;
  l = Array2.length;
  for ( i=0; i < l; i++ )
  {
    if ( Array2[i] == item )
    {
      return false;
    }
  }
  return true;
});
千里故人稀 2024-11-16 03:27:05

如果您希望从数组中删除所有重复项,那么我建议您使用 Set 来使查找速度尽可能快:

const a : Array = [ 2, 3, 4 ];
const b : Array = [ 3, 4, 5 ];

// Create a Set for Array 'b' to provide a fast lookup table.
const setB : Object = {};

var prop : *;
for each (prop in b) { 
    setB[key] = true 
};

// Find all values which only belong in Array 'a'.
const uniqueToA : Array = [];
for each (prop in a) {
    if (setB[prop] === undefined) {
        uniqueToA.push(prop);
    }
}

如果您发现自己在集合方面做了很多工作,那么我建议您投资一个集合框架例如 AS3Commons 集合

If you wish to knock out all duplicates from an Array then I suggest that you use a Set to make the lookup speed as fast as possible:

const a : Array = [ 2, 3, 4 ];
const b : Array = [ 3, 4, 5 ];

// Create a Set for Array 'b' to provide a fast lookup table.
const setB : Object = {};

var prop : *;
for each (prop in b) { 
    setB[key] = true 
};

// Find all values which only belong in Array 'a'.
const uniqueToA : Array = [];
for each (prop in a) {
    if (setB[prop] === undefined) {
        uniqueToA.push(prop);
    }
}

If you find yourself doing a lot of work with collections then I would advise you invest in a Collections Framework such as AS3Commons Collections.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文