I have an ArrayList of Strings, and I want to remove repeated strings from it. How can I do this?
|
|
|
|||
|
|
|
|
If you don't want duplicates in a Collection, you should consider why you're using a Collection that allows duplicates. The easiest way to remove repeated elements is to add the contents to a Set (which will not allow duplicates) and then add the Set back to the ArrayList:
Of course, this destroys the ordering of the elements in the ArrayList... |
||
|
|
|
|
If you don't want duplicates, use a Set instead of a
If really necessary you can use the same construction to convert a |
||
|
|
|
|
Although converting the
Then, if you need to get back a |
||
|
|
|
|
As said before, you should use a class implementing Set interface instead of List to be sure of unicity of elements. If you have to keep the order of elements, the SortedSet interface can then be used ; the TreeSet class implements that interface. |
||
|
|
|
|
Probably a bit overkill, but I enjoy this kind of isolated problem. :) This code uses a temporary Set (for the uniqueness check) but removes elements directly inside the original list. Since element removal inside an ArrayList can induce a huge amount of array copying, the remove(int)-method is avoided.
While we're at it, here's a version for LinkedList (a lot nicer!):
Use the marker interface to present a unified solution for List:
EDIT: I guess the generics-stuff doesn't really add any value here.. Oh well. :) |
|||
|
|
|
|
|||
|
|
|
If you have any control over the creation of your list then you might want to consider using a Map instead? Or you could put them in a Map from your ArrayList. |
||
|
