Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have to find a best way to find out that elements which is not presented in the second arraylist. suppose

Arraylist a,b, 

Arraylist a={1,2,3,4,5};
Arraylist b={2,3,4};

So basically what I want is to find out that elements of a which is not present in arraylist b.

So what is the best solutions to do that?

share|improve this question
@NPE I am just giving to an psudo code. what else you need to get these scenario. – arvin_codeHunk Nov 8 '12 at 9:24
@arvin_codeHunk are the input arrays sorted by any means? – ppeterka Nov 8 '12 at 9:26

8 Answers

up vote 7 down vote accepted
List<Integer> c = new ArrayList<>(a);
c.removeAll(b);

Also consider to use Sets instead of Lists.

share|improve this answer

You can try removeAll:

List<Integer> notPresent = new ArrayList<Integer>(a);
notPresent.removeAll(b);
share|improve this answer
+1 smart solution impressed – Bhavik Shah Nov 8 '12 at 9:25
- Uses generics parameter not raw type - removeAll returns a boolean not a List – Puce Nov 8 '12 at 9:26
this would be not a good practice, is there any kind of method which can sort and search automatically – arvin_codeHunk Nov 8 '12 at 9:26
As @Puce pointed, you better use sets instead of lists. They are faster for this kind of operations. – Nikita Beloglazov Nov 8 '12 at 9:27
what if I use Hashset ,like this hashset h; h.add(a); h.add(b); then iterate through this set – arvin_codeHunk Nov 8 '12 at 9:31
show 1 more comment

Please try like this

for (Object o : a) {  
  if (!b.contains(o)) {  
    // this is not present
  }  
}  
share|improve this answer

Try this:

 public static void main(String[] args) {
        List<Integer> a = new ArrayList<Integer>();
        List<Integer> b = new ArrayList<Integer>();
        List<Integer> exclusion = new ArrayList<Integer>();

        a.add(1);
        a.add(2);
        a.add(3);
        a.add(4);

        b.add(1);
        b.add(2);
        b.add(3);
        b.add(5);

        for (Integer x : a) {
            if (!b.contains(x)) {
                exclusion.add(x);
            }
        }

        for (Integer x : exclusion) {
            System.out.println(x);
        }

    }
share|improve this answer

Loop through one list, then check if each element in other list using contains.

share|improve this answer

Something like this. If you think there may be duplicates in a you can try another type of Collection, like a Set for notPresent.

   List<Integer> notPresent = new ArrayList<Integer>();

    for (Integer n : a){
     if (!b.contains(n)){
       notPresent.add(n);
     }
    }
share|improve this answer

Try this...

Use the contains() method of List.

ArrayList<Integer> aList = new ArrayList<Integer>();

for (Integer i : a){

      if (!(b.contains(i))){

             aList.add(i);

       }

     else{
             continue;

      }

 }
share|improve this answer

You could also use Apache Commons Collections:

public static void main(String[] args) {
    List<Integer> a = Arrays.asList(new Integer[] { 1, 2, 3, 4, 5 });
    List<Integer> b = Arrays.asList(new Integer[] { 2, 3, 4 });
    Collection<Integer> aMinusB = CollectionUtils.subtract(a, b);
    System.out.println(aMinusB);
}

The printed result is: [1, 5].

The Apache Commons libs are well tested and commonly used to extend standard Java functionalities. The drawback with subtract is that it appears to be non-generic. However it works with Collection so you can use any sub class you want. Check out the Javadoc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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