方法一:最廣泛的作法
使用 ES5 語法來實現雖然會麻煩些,但兼容性最好,不用考慮瀏覽器 JavaScript 版本。也不用引入其餘第三方庫。html
1,直接使用 filter、concat 來計算
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
//交集
var
c = a.filter(
function
(v){
return
b.indexOf(v) > -1 })
//差集
var
d = a.filter(
function
(v){
return
b.indexOf(v) == -1 })
//補集
var
e = a.filter(
function
(v){
return
!(b.indexOf(v) > -1) })
.concat(b.filter(
function
(v){
return
!(a.indexOf(v) > -1)}))
//並集
var
f = a.concat(b.filter(
function
(v){
return
!(a.indexOf(v) > -1)}));
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
console.log(
"a與b的交集:"
, c);
console.log(
"a與b的差集:"
, d);
console.log(
"a與b的補集:"
, e);
console.log(
"a與b的並集:"
, f);
2,對 Array 進行擴展
(1)爲方便使用,咱們能夠對數組功能進行擴展,增長一些經常使用的方法。數組
//數組功能擴展
//數組迭代函數
Array.prototype.each =
function
(fn){
fn = fn || Function.K;
var
a = [];
var
args = Array.prototype.slice.call(arguments, 1);
for
(
var
i = 0; i <
this
.length; i++){
var
res = fn.apply(
this
,[
this
[i],i].concat(args));
if
(res !=
null
) a.push(res);
}
return
a;
};
//數組是否包含指定元素
Array.prototype.contains =
function
(suArr){
for
(
var
i = 0; i <
this
.length; i ++){
if
(
this
[i] == suArr){
return
true
;
}
}
return
false
;
}
//不重複元素構成的數組
Array.prototype.uniquelize =
function
(){
var
ra =
new
Array();
for
(
var
i = 0; i <
this
.length; i ++){
if
(!ra.contains(
this
[i])){
ra.push(
this
[i]);
}
}
return
ra;
};
//兩個數組的交集
Array.intersect =
function
(a, b){
return
a.uniquelize().each(
function
(o){
return
b.contains(o) ? o :
null
});
};
//兩個數組的差集
Array.minus =
function
(a, b){
return
a.uniquelize().each(
function
(o){
return
b.contains(o) ?
null
: o});
};
//兩個數組的補集
Array.complement =
function
(a, b){
return
Array.minus(Array.union(a, b),Array.intersect(a, b));
};
//兩個數組並集
Array.union =
function
(a, b){
return
a.concat(b).uniquelize();
};
(2)使用樣例瀏覽器
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
console.log(
"a與b的交集:"
, Array.intersect(a, b));
console.log(
"a與b的差集:"
, Array.minus(a, b));
console.log(
"a與b的補集:"
, Array.complement(a, b));
console.log(
"a與b的並集:"
, Array.union(a, b));
方法二:使用 ES6 語法實現
1,實現原理
而在 ES6 中咱們能夠藉助擴展運算符(...)以及 Set 的特性實現相關計算,代碼也會更加簡單些。app
2,樣例代碼
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
var
sa =
new
Set(a);
var
sb =
new
Set(b);
// 交集
let intersect = a.filter(x => sb.has(x));
// 差集
let minus = a.filter(x => !sb.has(x));
// 補集
let complement = [...a.filter(x => !sb.has(x)), ...b.filter(x => !sa.has(x))];
// 並集
let unionSet = Array.from(
new
Set([...a, ...b]));
console.log(
"a與b的交集:"
, intersect);
console.log(
"a與b的差集:"
, minus);
console.log(
"a與b的補集:"
, complement);
console.log(
"a與b的並集:"
, unionSet);
方法三:使用 jQuery 實現
若是項目中有引入 jQuery,那麼實現起來也很簡單。函數
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
// 交集
let intersect = $(a).filter(b).toArray();
// 差集
let minus = $(a).not(b).toArray();
// 補集
let complement = $(a).not(b).toArray().concat($(b).not(a).toArray());
// 並集
let unionSet = $.unique(a.concat(b));
console.log(
"a與b的交集:"
, intersect);
console.log(
"a與b的差集:"
, minus);
console.log(
"a與b的補集:"
, complement);
console.log(
"a與b的並集:"
, unionSet);
轉自:http://www.hangge.com/blog/cache/detail_1862.htmlthis
1,直接使用 filter、concat 來計算
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
//交集
var
c = a.filter(
function
(v){
return
b.indexOf(v) > -1 })
//差集
var
d = a.filter(
function
(v){
return
b.indexOf(v) == -1 })
//補集
var
e = a.filter(
function
(v){
return
!(b.indexOf(v) > -1) })
.concat(b.filter(
function
(v){
return
!(a.indexOf(v) > -1)}))
//並集
var
f = a.concat(b.filter(
function
(v){
return
!(a.indexOf(v) > -1)}));
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
console.log(
"a與b的交集:"
, c);
console.log(
"a與b的差集:"
, d);
console.log(
"a與b的補集:"
, e);
console.log(
"a與b的並集:"
, f);
|
2,對 Array 進行擴展
(1)爲方便使用,咱們能夠對數組功能進行擴展,增長一些經常使用的方法。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//數組功能擴展
//數組迭代函數
Array.prototype.each =
function
(fn){
fn = fn || Function.K;
var
a = [];
var
args = Array.prototype.slice.call(arguments, 1);
for
(
var
i = 0; i <
this
.length; i++){
var
res = fn.apply(
this
,[
this
[i],i].concat(args));
if
(res !=
null
) a.push(res);
}
return
a;
};
//數組是否包含指定元素
Array.prototype.contains =
function
(suArr){
for
(
var
i = 0; i <
this
.length; i ++){
if
(
this
[i] == suArr){
return
true
;
}
}
return
false
;
}
//不重複元素構成的數組
Array.prototype.uniquelize =
function
(){
var
ra =
new
Array();
for
(
var
i = 0; i <
this
.length; i ++){
if
(!ra.contains(
this
[i])){
ra.push(
this
[i]);
}
}
return
ra;
};
//兩個數組的交集
Array.intersect =
function
(a, b){
return
a.uniquelize().each(
function
(o){
return
b.contains(o) ? o :
null
});
};
//兩個數組的差集
Array.minus =
function
(a, b){
return
a.uniquelize().each(
function
(o){
return
b.contains(o) ?
null
: o});
};
//兩個數組的補集
Array.complement =
function
(a, b){
return
Array.minus(Array.union(a, b),Array.intersect(a, b));
};
//兩個數組並集
Array.union =
function
(a, b){
return
a.concat(b).uniquelize();
};
|
(2)使用樣例
1
2
3
4
5
6
7
8
|
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
console.log(
"a與b的交集:"
, Array.intersect(a, b));
console.log(
"a與b的差集:"
, Array.minus(a, b));
console.log(
"a與b的補集:"
, Array.complement(a, b));
console.log(
"a與b的並集:"
, Array.union(a, b));
|
(3)運行結果同上面同樣。
方法二:使用 ES6 語法實現
1,實現原理
而在 ES6 中咱們能夠藉助擴展運算符( ...)以及 Set 的特性實現相關計算,代碼也會更加簡單些。2,樣例代碼
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
var
sa =
new
Set(a);
var
sb =
new
Set(b);
// 交集
let intersect = a.filter(x => sb.has(x));
// 差集
let minus = a.filter(x => !sb.has(x));
// 補集
let complement = [...a.filter(x => !sb.has(x)), ...b.filter(x => !sa.has(x))];
// 並集
let unionSet = Array.from(
new
Set([...a, ...b]));
console.log(
"a與b的交集:"
, intersect);
console.log(
"a與b的差集:"
, minus);
console.log(
"a與b的補集:"
, complement);
console.log(
"a與b的並集:"
, unionSet);
|
若是項目中有引入
jQuery,那麼實現起來也很簡單。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
var
a = [1,2,3,4,5]
var
b = [2,4,6,8,10]
console.log(
"數組a:"
, a);
console.log(
"數組b:"
, b);
// 交集
let intersect = $(a).filter(b).toArray();
// 差集
let minus = $(a).not(b).toArray();
// 補集
let complement = $(a).not(b).toArray().concat($(b).not(a).toArray());
// 並集
let unionSet = $.unique(a.concat(b));
console.log(
"a與b的交集:"
, intersect);
console.log(
"a與b的差集:"
, minus);
console.log(
"a與b的補集:"
, complement);
console.log(
"a與b的並集:"
, unionSet);
|
原文出自:www.hangge.com 轉載請保留原文連接:http://www.hangge.com/blog/cache/detail_1862.htmlurl