I have a List of type Integer eg:
[1, 1, 2, 3, 3, 3]
I would like a method to return all the duplicates eg:
[1, 3]
What is the best way to do this?
|
I have a List of type Integer eg:
I would like a method to return all the duplicates eg:
What is the best way to do this? |
|||||||||||||
|
|
The method add of Set returns a boolean whether a value already exists (true if it does not exist, false if it already exists, see Set documentation). So just iterate through all the values:
|
|||||||||||||||||||
|
|
You can use something like this:
|
|||||||
|
|
Use a MultiMap to store each value as a key / value set. Then iterate through the keys and find the ones with multiple values. |
|||
|
|
Obviously you can do whatever you want with them (i.e. put in a Set to get a unique list of duplicate values) instead of printing... This also has the benefit of recording the location of duplicate items too. |
||||
|
|
|
Put list in set (this effectively filter only unique items), remove all set items from original list (so it will contains only items, which have more then 1 occurence), and put list in new set (this will again filter out only unique items):
|
|||||||
|
|
This also works:
|
||||
|
|
|
This is a problem where functional techniques shine. For example, the following F# solution is both clearer and less bug prone than the best imperative Java solution (and I work daily with both Java and F#).
Of course, this question is about Java. So my suggestion is to adopt a library which brings functional features to Java. For example, it could be solved using my own library as follows (and there are several others out there worth looking at too):
|
|||
|
|
|
Try this to find duplicates items in list :
|
|||
|
|
|
Detecting duplicates usually requires some kind of sorting algorithm. I would sort the list and then iterate over the list and count the occurences of equal items. If an item occured more than once, add it to the result. This is in O(n*log(n) + n). |
|||
|
|
|
create a
|
||||
|
|
|
This should work for sorted and unsorted.
|
|||
|
|
|
If you know the maximum value (for example < 10000) you could sacrifice space for speed . I Can’t remember exact name of this technique. pseudo code:
|
|||
|
|
|
I needed a solution to this as well. I used leifg's solution and made it generic.
|
||||
|
|