vote up 9 vote down star
3

Given two lists (not necessarily sorted), what is the most efficient non-recursive algorithm to find the intersection of those lists?

flag
This sounds like a homework question - is it? – Erik Jan 30 at 21:36
Actually no. I'm at work and I have to program in a statistical modeling environment called eviews. Eviews does not have set intersection built in, and also does not support recursion. I need a quick algorithm because my sets tend to be large and the program needs to be run frequently. Thanks! – David Jan 30 at 21:40
What language are you working in? Maybe your language already provides something that would make this task easier. – Juliet Jan 30 at 22:11
Are the valores in each list unique? If yes, you could join the lists, sort the result, and look for duplicates. – Fabio Ceconello Jan 30 at 22:35
1  
How many elements in the sets typically? (e.g. is it worth your time to try to implement a hash, or can you get away with sorting = O(n log n) ?) – Jason S Jan 30 at 23:41
show 2 more comments

8 Answers

vote up 7 vote down

You could put all elements of the first list into a hash set. Then, iterate the second one and, for each of its elements, check the hash to see if it exists in the first list. If so, output it as an element of the intersection.

link|flag
This sounds good, but I don't believe I have access to hashing algorithms either. Any suggestions? – David Jan 30 at 21:42
Then, maybe: * sort list1 (time: n log n) * sort list2 (time: n log n) * merge the two and check for similar entries as you iterate the two sorted lists simultaneously (linear time) – dehmann Jan 30 at 21:49
I don't have enough points to comment on other threads, but regarding the point that quick sort is recursive: You can implement it without recursion. See here, for example: codeguru.com/forum/archive/… – dehmann Jan 30 at 21:56
Thanks, added the details to my answer – Wookai Jan 30 at 22:00
vote up 1 vote down

without hashing, I suppose you have two options:

  • The naive way is going to be compare each element to every other element. O(n^2)
  • Another way would be to sort the lists first, then iterate over them: O(n lg n) * 2 + 2 * O(n)
link|flag
vote up 0 vote down

I got some good answers from this that you may be able to apply. I haven't got a chance to try them yet, but since they also cover intersections, you may find them useful.

link|flag
vote up 0 vote down

First, sort both lists using quicksort : O(n*log(n). Then, compare the lists by browsing the lowest values first, and add the common values. For example, in lua) :

function findIntersection(l1, l2)
    i, j = 1,1
    intersect = {}

    while i < #l1 and j < #l2 do
    	if l1[i] == l2[i] then
    		i, j = i + 1, j + 1
    		table.insert(intersect, l1[i])
    	else if l1[i] > l2[j] then
    		l1, l2 = l2, l1
    		i, j = j, i
    	else
    		i = i + 1
    	end
    end

    return intersect
end

which is O(max(n, m)) where n and m are the sizes of the lists.

EDIT: quicksort is recursive, as said in the comments, but it looks like there are non-recursive implementations

link|flag
Isn't quicksort recursive? Or is there a non-recursive version of it? – David Jan 30 at 21:50
Too bad that quicksort is a recursive algorithm... – oefe Jan 30 at 21:50
I wouldn't call that O(max(n,m)). You're doing two sorts, too. – Tom Ritter Jan 30 at 21:51
Is there a non-recursive version of mergesort that could work also? – David Jan 30 at 21:51
Heapsort is non-recursive, but adds some data-structure needs. Would it be ok ? – Wookai Jan 30 at 21:57
show 2 more comments
vote up 0 vote down

Why not implement your own simple hash table or hash set? It's worth it to avoid nlogn intersection if your lists are large as you say.

Since you know a bit about your data beforehand, you should be able to choose a good hash function.

link|flag
vote up 0 vote down

I second the "sets" idea. In JavaScript, you could use the first list to populate an object, using the list elements as names. Then you use the list elements from the second list and see if those properties exist.

link|flag
vote up 0 vote down

If there is a support for sets (as you call them in the title) as built-in usually there is a intersection method.

Anyway, as someone said you could do it easily (I will not post code, someone already did so) if you have the lists sorted. If you can't use recursion there is no problem. There are quick sort recursion-less implementations.

link|flag
1. If eviews would support sets, it would probably offer a method for set intersections 2. How can joining two sets help here. The intersection are those elements that are in both sets. When I here joining I think of calculation the union of two sets – f3lix Jan 31 at 22:47
Yup you're right, I did not pay attention. I edited :) – Andrea Ambu Feb 1 at 12:06
vote up 0 vote down

In PHP, something like

function intersect($X) { // X is an array of arrays; returns intersection of all the arrays
  $counts = Array(); $result = Array();
  foreach ($X AS $x) {
    foreach ($x AS $y) { $counts[$y]++; }
  }
  foreach ($counts AS $x => $count) {
    if ($count == count($X)) { $result[] = $x; }
  }
  return $result;
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.