What's the simplest, library-free code for implementing array intersections in javascript? I want to write
intersection([1,2,3], [2,3,4,5])
and get
[2, 3]
|
What's the simplest, library-free code for implementing array intersections in javascript? I want to write
and get
|
|||||||
|
|
destructive seems simplest, especially if we can assume the input is sorted
/* destructively finds the intersection of
* two arrays in a simple fashion.
*
* PARAMS
* a - first array, must already be sorted
* b - second array, must already be sorted
*
* NOTES
* State of input arrays is undefined when
* the function returns. They should be
* (prolly) be dumped.
*
* Should have O(n) operations, where n is
* n = MIN(a.length, b.length)
*/
function intersection_destructive(a, b)
{
var result = new Array();
while( a.length > 0 && b.length > 0 )
{
if (a[0] < b[0] ){ a.shift(); }
else if (a[0] > b[0] ){ b.shift(); }
else /* they're equal */
{
result.push(a.shift());
b.shift();
}
}
return result;
}
Non-destructive has to be a hair more complicated, since we've got to track indexes
/* finds the intersection of
* two arrays in a simple fashion.
*
* PARAMS
* a - first array, must already be sorted
* b - second array, must already be sorted
*
* NOTES
*
* Should have O(n) operations, where n is
* n = MIN(a.length(), b.length())
*/
function intersect_safe(a, b)
{
var ai=0, bi=0;
var result = new Array();
while( ai < a.length && bi < b.length )
{
if (a[ai] < b[bi] ){ ai++; }
else if (a[ai] > b[bi] ){ bi++; }
else /* they're equal */
{
result.push(a[ai]);
ai++;
bi++;
}
}
return result;
}
|
|||||||||||||||||||
|
|
Use a combination of EDIT: If you really want a code sample:
Illustrates the concept, at least. |
|||||||||||||||||||
|
|
I have made a JsFiddle Banchmark test page for all the methods here, including the _underscore intersection function. (higher is better)
Till now intersect_safe gave the best results. YOU & Underscore the worst. |
|||||||||||||
|
Something like this, Not tested well though.
PS:The algorithm only intended for Numbers and Normal Strings, intersection of arbitary object arrays may not work. |
|||||||||||
|
|
For arrays containing only strings or numbers you can do something with sorting, as per some of the other answers. For the general case of arrays of arbitrary objects I don't think you can avoid doing it the long way. The following will give you the intersection of any number of arrays provided as parameters to
|
|||||
|
|
The performance of @atk's implementation for sorted arrays of primitives can be improved by using .pop rather than .shift.
I created a benchmark using jsPerf: http://bit.ly/P9FrZK. It's about three times faster to use .pop. |
|||
|
How about just using associative arrays?
edit:
|
|||||||||||
|
|
The underscore.js library has a nice intersection function. |
|||||
|
|
|
Here's a very naive implementation I'm using. It's non-destructive and also makes sure not to duplicate entires.
|
|||
|
|
|
|||
|
|
intersection of N arrays in coffeescript
|
|||
|
|
|
I'll contribute with what has been working out best for me:
|
|||
|
|
|
"filter" and "indexOf" aren't supported on Array in IE. How about this:
|
|||||||
|