Set is a natural choice when you want uniqueness. To avoid a lot of conversions, you can change from int[] to Integer[] and get a very short and clean union method.
Here's a complete working example:
import java.util.*;
public class Union {
// Search Function
public boolean search(Integer a[], Integer i) {
for(int k = 0; k < a.length; k++) {
if(a[k] == i) {
return true;
}
}
return false;
}
// Union
public void union(Integer[] a, Integer[] b) {
Set<Integer> set = new HashSet<Integer>(Arrays.asList(a));
set.addAll(Arrays.asList(b));
Integer[] unionArray = set.toArray(new Integer[set.size()]);
System.out.println(Arrays.toString(unionArray));
}
public static void main(String...s) {
Integer[] array1 = new Integer[]{1,1,1,4,};
Integer[] array2 = new Integer[]{1,4,4,4,1,2};
new Union().union(array1, array2);
}
}
Obviously, there is overhead here to convert from array to list, then that list to set, then that set back to array. However, it's usually not worth having convoluted code that does something faster - only when you find out that you have a performance bottleneck in this part of the code it would be useful to go to a direct and longer (code-wise) solution.
Using Set also avoids a common mistake where you iterate through the array to search for the element to confirm that the element you are adding is not a duplicate. Commonly, solutions such as this have O(n^2) time complexity (see this).
This is not going to be an issue when your arrays have 10 elements, but if you have two arrays of, say, 1000 unique elements each, you are going to do a lot of unnecessary walking, making your code really slow. In this case, in an array-based solution with duplicate checking by walking through the array, you would have to perform 1000 * 1000 / 2 = 500K operations, while a set-based one will be close to 5k:
- 1000 to convert the first array to a list,
- 1000 to convert list to set,
- 1000 to convert the second array to a list,
- 1000 to add the second array to the set and
- 1000 to convert it back from the set an array)
as set-based solution is O(n). If you assume these operations are approximately the same (not true, but not a bad approximation nonetheless), this is 100 times faster.
Moreover, this increases fast with increasing the number of unique elements - for 10K elements in each of the arrays, array-based walking solution would take an order of 50,000,000 operations, while a set-based one would take an order of 15,000.
Hope this helps.
int[] xrather thanint x[]. Also, parameter names are conventionally camelCased. – Jon Skeet Mar 30 '12 at 5:14union(int[][] a, int[][] b)which is what makes it a 2D (two dimensional) array. – Peter Lawrey Mar 30 '12 at 6:41