Given two lists (not necessarily sorted), what is the most efficient non-recursive algorithm to find the intersection of those lists?
|
3
|
|||||||||||||
|
|
|
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. |
||||||||
|
|
|
without hashing, I suppose you have two options:
|
||
|
|
|
|
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. |
||
|
|
|
|
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) :
which is EDIT: quicksort is recursive, as said in the comments, but it looks like there are non-recursive implementations |
||||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
|
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. |
||||
|
|
|
In PHP, something like
|
||
|
|
