You could try a merge sort ignoring duplicates. This is an O(n) operation for sorted arrays. If the two arrays have 70% elements in common the resulting collection will have 130 or less unique ints. In your case you don't need the result so you can just count the number of unique entries and stop as soon as you reach 131 or the end of both arrays.
EDIT (2) The following code can do ~176 billion comparisions in about 47 seconds using 4 cores. Making the code multi-threaded with 4 cours was only 70% faster.
Using BitSet only works if the range of int values is fairly small. Otherwise you have to compare the int[] (I have left the code in should you need it)
Peformed 176,467,034,428 comparisons in 47.712 seconds and found 444,888 matches
public static void main(String... args) throws InterruptedException {
int length = 100;
int[][] ints = generateArrays(50000, length);
final BitSet[] bitSets = new BitSet[ints.length];
for(int i=0;i<ints.length;i++) {
int[] ia = ints[i];
BitSet bs = new BitSet(ia[ia.length-1]);
for (int i1 : ia)
bs.set(i1);
bitSets[i] = bs;
}
final AtomicInteger matches = new AtomicInteger();
final AtomicLong comparisons = new AtomicLong();
int nThreads = Runtime.getRuntime().availableProcessors();
ExecutorService executorService = Executors.newFixedThreadPool(nThreads);
long start = System.nanoTime();
for (int i = 0; i < bitSets.length - 1; i++) {
final int finalI = i;
executorService.submit(new Runnable() {
public void run() {
for (int j = finalI + 1; j < bitSets.length; j++) {
int compare = compare(bitSets[finalI], bitSets[j]);
if (compare <= 130)
matches.incrementAndGet();
comparisons.addAndGet(compare);
}
}
});
}
executorService.shutdown();
executorService.awaitTermination(1, TimeUnit.HOURS);
long time = System.nanoTime() - start;
System.out.printf("Peformed %,d comparisons in %.3f seconds and found %,d matches %n",comparisons.longValue(),time/1e9, matches.intValue());
}
private static int[][] generateArrays(int count, int length) {
List<Integer> rawValues = new ArrayList<Integer>(170);
for (int i = 0; i < 170; i++)
rawValues.add(i);
int[][] ints = new int[count][length];
Random rand = new Random(1);
for (int[] ia : ints) {
Collections.shuffle(rawValues, rand);
for (int i = 0; i < ia.length; i++)
ia[i] = (int) (int) rawValues.get(i);
Arrays.sort(ia);
}
return ints;
}
private static int compare(int[] ia, int[] ja) {
int count = 0;
int i=0,j=0;
while(i<ia.length && j<ja.length) {
int iv = ia[i];
int jv = ja[j];
if (iv < jv) {
i++;
} else if (iv > jv) {
j++;
} else {
count++; // duplicate
i++;
j++;
}
}
return ia.length + ja.length - count;
}
private static int compare(BitSet ia, BitSet ja) {
BitSet both = new BitSet(Math.max(ia.length(), ja.length()));
both.or(ia);
both.or(ja);
return both.cardinality();
}
Arrays.binarySearch()makes no sense here for me. For comparing two arrays, you just need to go through both of them in parallel and count the common elements on the fly. What I mean is very similar to mergesort. – maaartinus Jan 21 '11 at 11:33