I have an ArrayList of Strings, and I want to remove repeated strings from it. How can I do this?

link|improve this question

30% accept rate
I too need help in this area , I want to find the duplicate from my arraylist.But in O(n) time – Chetan Mar 29 at 19:26
feedback

10 Answers

up vote 56 down vote accepted

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:

ArrayList al = new ArrayList();
// add elements to al, including duplicates
HashSet hs = new HashSet();
hs.addAll(al);
al.clear();
al.addAll(hs);

Of course, this destroys the ordering of the elements in the ArrayList.

link|improve this answer
10  
See also LinkedHashSet, if you wish to retain the order. – volley Dec 9 '09 at 20:38
But this will just create the set without duplicates , I want to know which number was duplicate in O(n) time – Chetan Mar 29 at 19:43
Chetan, finding the items in O(n) is possible if the set of possible values is small (think Byte or Short); a BitSet or similar can then be used to store and look up already encountered values in O(1) time. But then again - with such a small value set, doing it in O(n log n) might not be a problem anyway since n is low. (This comment is not applicable to original poster, who needs to do this with String.) – volley May 3 at 12:38
feedback

Although converting the ArrayList to a HashSet effectively removes duplicates, if you need to preserve insertion order, I'd rather suggest you to use this variant

// list is some List of Strings
Set<String> s = new LinkedHashSet<String>(list);

Then, if you need to get back a List reference, you can use again the conversion constructor.

link|improve this answer
yeah! +1 for noticed order aspect – smas Feb 20 '11 at 13:48
2  
Does LinkedHashSet make any guarantees as to which of several duplicates are kept from the list? For instance, if position 1, 3, and 5 are duplicates in the original list, can we assume that this process will remove 3 and 5? Or maybe remove 1 and 3? Thanks. – Matt Briançon May 1 '11 at 2:20
2  
@Matt: yes, it does guarantee that. The docs say: "This linked list defines the iteration ordering, which is the order in which elements were inserted into the set (insertion-order). Note that insertion order is not affected if an element is re-inserted into the set." – abahgat May 2 '11 at 9:00
Perfect, thanks! – Matt Briançon May 2 '11 at 16:49
Very interesting. I have a different situation here. I am not trying to sort String but another object called AwardYearSource. This class has an int attribute called year. So I want to remove duplicates based on the year. i.e if there is year 2010 mentioned more than once, I want to remove that AwardYearSource object. How can I do that? – WowBow Apr 16 at 15:27
feedback

If you don't want duplicates, use a Set instead of a List. To convert a List to a Set you can use the following code:

// list is some List of Strings
Set<String> s = new HashSet<String>(list);

If really necessary you can use the same construction to convert a Set back into a List.

link|improve this answer
feedback

Here's a way that doesn't affect your list ordering:

ArrayList l1 = new ArrayList();
ArrayList l2 = new ArrayList();

Iterator iterator = l1.iterator();

        while (iterator.hasNext())
        {
            YourClass o = (YourClass) iterador.next();
            if(!l2.contains(o)) l2.add(o);
        }

l1 is the original list, and l2 is the list whithout repeated items (Make sure YourClass has the equals method acording to what you want to stand for equality)

link|improve this answer
feedback

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.

public static <T> void removeDuplicates(ArrayList<T> list) {
    int size = list.size();
    int out = 0;
    {
        final Set<T> encountered = new HashSet<T>();
        for (int in = 0; in < size; in++) {
            final T t = list.get(in);
            final boolean first = encountered.add(t);
            if (first) {
                list.set(out++, t);
            }
        }
    }
    while (out < size) {
        list.remove(--size);
    }
}

While we're at it, here's a version for LinkedList (a lot nicer!):

public static <T> void removeDuplicates(LinkedList<T> list) {
    final Set<T> encountered = new HashSet<T>();
    for (Iterator<T> iter = list.iterator(); iter.hasNext(); ) {
        final T t = iter.next();
        final boolean first = encountered.add(t);
        if (!first) {
            iter.remove();
        }
    }
}

Use the marker interface to present a unified solution for List:

public static <T> void removeDuplicates(List<T> list) {
    if (list instanceof RandomAccess) {
        // use first version here
    } else {
        // use other version here
    }
}

EDIT: I guess the generics-stuff doesn't really add any value here.. Oh well. :)

link|improve this answer
Why use ArrayList in parameter? Why not just List? Will that not work? – Shervin Nov 12 '09 at 15:54
A List will absolutely work as in-parameter for the first method listed. The method is however optimized for use with a random access list such as ArrayList, so if a LinkedList is passed instead you will get poor performance. For example, setting the n:th element in a LinkedList takes O(n) time, whereas setting the n:th element in a random access list (such as ArrayList) takes O(1) time. Again, though, this is probably overkill... If you need this kind of specialized code it will hopefully be in an isolated situation. – volley Dec 9 '09 at 20:37
feedback

There is also ImmutableSet from guava-libraries as an option:

ImmutableSet.copyOf(list);
link|improve this answer
feedback

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.

link|improve this answer
feedback

When you are filling the ArrayList, use a condition for each element. For example:

ArrayList al = new ArrayList();

// fill 1
for (int i = 0; i <= 5; i++)
    if (al).Contains(i)
        al.Add(i);

// fill 2
for (int i = 0; i <= 10; i++)
    if (al).Contains(i)
        al.Add(i);

We will get an array {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}

link|improve this answer
feedback
for(int a=0;a<myArray.size();a++){
        for(int b=a+1;b<myArray.size();b++){
            if(myArray.get(a).equalsIgnoreCase(myArray.get(b))){
                myArray.remove(b); 
                dups++;
                b--;
            }
        }
}
link|improve this answer
feedback

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.

link|improve this answer
1  
Why would you use a Map and not a Set ? – Luc Touraille Oct 15 '08 at 8:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.