Reputation: 1506
In Java, what's the most efficient way to return the common elements from two String Arrays? I can do it with a pair of for loops, but that doesn't seem to be very efficient. The best I could come up with was converting to a List
and then applying retainAll
, based on my review of a similar SO question:
List<String> compareList = Arrays.asList(strArr1);
List<String> baseList = Arrays.asList(strArr2);
baseList.retainAll(compareList);
Upvotes: 11
Views: 20583
Reputation: 53600
I had an interview and this question was the thing they asked me during technical interview. My answer was following lines of code:
public static void main(String[] args) {
String[] temp1 = {"a", "b", "c"};
String[] temp2 = {"c", "d", "a", "e", "f"};
String[] temp3 = {"b", "c", "a", "a", "f"};
ArrayList<String> list1 = new ArrayList<String>(Arrays.asList(temp1));
System.out.println("list1: " + list1);
ArrayList<String> list2 = new ArrayList<String>(Arrays.asList(temp2));
System.out.println("list2: " + list2);
ArrayList<String> list3 = new ArrayList<String>(Arrays.asList(temp3));
System.out.println("list3: " + list3);
list1.retainAll(list2);
list1.retainAll(list3);
for (String str : list1)
System.out.println("Commons: " + str);
}
Output:
list1: [a, b, c]
list2: [c, d, a, e, f]
list3: [b, c, a, a, f]
Commons: a
Commons: c
Upvotes: 0
Reputation: 12402
I would use HashSets (and retainAll) then, which would make the whole check O(n) (for each element in the first set lookup if it exists (contains()
), which is O(1) for HashSet). List
s are faster to create though (HashSet
might have to deal with collisions...).
Keep in mind that Set
and List
have different semantics (lists allow duplicate elements, nulls...).
Upvotes: 3
Reputation: 424983
This is a one-liner:
compareList.retainAll(new HashSet<String>(baseList));
The retainAll
impl (in AbstractCollection) iterates over this
, and uses contains()
on the argument. Turning the argument into a HashSet
will result in fast lookups, so the loop within the retainAll
will execute as quickly as possible.
Also, the name baseList
hints at it being a constant, so you will get a significant performance improvement if you cache this:
static final Set<String> BASE = Collections.unmodifiableSet(new HashSet<String>(Arrays.asList("one", "two", "three", "etc")));
static void retainCommonWithBase(Collection<String> strings) {
strings.retainAll(BASE);
}
If you want to preserve the original List, do this:
static List<String> retainCommonWithBase(List<String> strings) {
List<String> result = new ArrayList<String>(strings);
result.retainAll(BASE);
return result;
}
Upvotes: 6
Reputation: 92120
What you want is called intersection. See that: Intersection and union of ArrayLists in Java
The use of an Hash based collection provides a really faster contains() method, particularly on strings which have an optimized hashcode.
If you can import libraries you can consider using the Sets.intersection of Guava.
Edit:
Didn't know about the retainAll method.
Note that the AbstractCollection implementation, which seems not overriden for HashSets and LinkedHashSets is:
public boolean retainAll(Collection c) { boolean modified = false; Iterator it = iterator(); while (it.hasNext()) { if (!c.contains(it.next())) { it.remove(); modified = true; } } return modified; }
Which means you call contains() on the collection parameter! Which means if you pass a List parameter you will have an equals call on many item of the list, for every iteration!
This is why i don't think the above implementations using retainAll are good.
public <T> List<T> intersection(List<T> list1, List<T> list2) {
boolean firstIsBigger = list1.size() > list2.size();
List<T> big = firstIsBigger ? list1:list2;
Set<T> small = firstIsBigger ? new HashSet<T>(list2) : new HashSet<T>(list1);
return big.retainsAll(small)
}
Choosing to use the Set for the smallest list because it's faster to contruct the set, and a big list iterates pretty well...
Notice that one of the original list param may be modified, it's up to you to make a copy...
Upvotes: 1
Reputation: 3314
Sort both arrays.
Once sorted, you can iterate both sorted arrays exactly once, using two indexes.
This will be O(NlogN).
Upvotes: 3
Reputation: 10003
retain all is not supported by list. use set instead:
import java.util.*;
public class Main {
public static void main(String[] args) {
String[] strings1={"a","b","b","c"},strings2={"b","c","c","d"};
List<String> list=Arrays.asList(strings1);
//list.retainAll(Arrays.asList(strings2)); // throws UnsupportedOperationException
//System.out.println(list);
Set<String> set=new LinkedHashSet<String>(Arrays.asList(strings1));
set.retainAll(Arrays.asList(strings2));
System.out.println(set);
}
}
Upvotes: 1