How can we find out missing elements from two arrays ? Ex:
int []array1 ={1,2,3,4,5};
int []array2 ={3,1,2};
From the above two arrays i want to find what are the missing elements in second array?
|
How can we find out missing elements from two arrays ? Ex:
From the above two arrays i want to find what are the missing elements in second array? |
|||||||
|
|
Convert them to The first problem is how to convert a primitive
Apache commons (which I'm not familiar with) apparently has something similar. Now convert to a set:
And compute the difference:
And convert the result back to an array:
|
|||||
|
|
If you are allowed duplicates in the arrays, an efficient (O(n)) solution it to create a frequency table (Map) by iterating over the first array, and then use the map to match off any elements in the second array.
|
||||
|
|
|
The naive way would be to simply search one array for each of the elements of the other array (with a for loop). If you first were to SORT both arrays, it becomes much more efficient. |
|||
|
|
|
Consider using intersection method: A healthy discussion is available at: http://www.coderanch.com/t/35439/Programming-Diversions/Intersection-two-arrays |
|||
|
|
|
@finnw I believe you were thinking of commons-collections. Using the disjunction method will find all objects that aren't found in an intersection.
|
|||||
|
|
You could create two other int arrays to store the multiplicity of each value. Increment the index of the array that the value corresponds with every time it is found and then compare the arrays. It's not the most "efficient" way perhaps, but it's a very simple concept that works. |
|||
|
|