I want to detect duplicate values in a Java array. For example:
int[] array = { 3, 3, 3, 1, 5, 8, 11, 4, 5 };
How could I get the specific duplicated entry and how many times it occurs?
|
I want to detect duplicate values in a Java array. For example:
How could I get the specific duplicated entry and how many times it occurs? |
|||||
|
|
I'll have a
|
|||||
|
|
Seems like a job for data structure called
Standard JDK 6 is primitive and do not contain For example with Guava-libraries you can
And this would output:
|
||||
|
|
|
The answer depends on the number range in your source array. If the range is small enough you can allocate an array, loop through your source and increment at the index of your source number:
If your source array contains an unknown or too large range, you can create a
NB. typed the above without the help of a JVM, getting rid of typoes is left as an exercise for the reader :-) |
||||
|
|
|
|||||||||
|
|
||||
|
|
|
assign a counter for the first step then you can relate them to an another array assigning each number to an index then if your number is duplicated increment your counter... |
|||
|
|
|
Sort the array, then either scan it or |
|||
|
|