I have an Array of Objects that need the duplicates removed/filtered. I was going to just override equals & hachCode on the Object elements, and then stick them in a Set... but I figured I should at least poll stackoverflow to see if there was another way, perhaps some clever method of some other API?
|
1
|
|||||||||
|
|
|
I would agree with your approach to override Doing so also makes it absolutely clear to any other developers that the non-duplicate characteristic is required. Another reason - you get to choose an implementation that meets your needs best now: and you don't have to change your code to change the implementation in the future. |
|||
|
|
|
|
Basically, you want a
The implementation of the |
||
|
|
|
Of course the original post begs the question, "How did you get that array (that might contain duplicated entries) in the first place?" Do you need the array (with duplicates) for other purposes, or could you simply use a Set from the beginning? Alternately, if you need to know the number of occurrences of each value, you could use a |
||
|
|
|
|
I'd like to reiterate the point made by Jason in the comments: Why place yourself at that point at all? Why use an array for a data structure that shouldn't hold duplicates at all? Use a Having to post-process some data structure is often a hint that you should have choosen a different one to begin with. |
||
|
|
|
Speaking from a general programming standard you could always double enumerate the collections then the compare the source and target. And if your inner enumeration always starts one entry after the source, it's fairly efficient (pseudo code to follow)
You could arguably add a break; statement after the destroy but then you only discover the first duplicate, but if that's all you will ever have, then it would be a nice small optimization. |
|||
|
|
|
|
I found this in the web Here are two methods that allow you to remove duplicates in an ArrayList. removeDuplicate does not maintain the order where as removeDuplicateWithOrder maintains the order with some performance overhead.
|
||||||
|
|
|
Overriding I think that if you use a |
||||||
|
|
|
A |
||
|
|
|
|
that is indeed the best answer (put them in a Set). |
||
|
|
