找到两个ArrayLists之间的交集

时间:2014-10-06 18:54:14

标签: java recursion arraylist

查找字符串的两个ArrayLists的交集。

以下是代码:

public ArrayList<String> intersection( ArrayList<String> AL1, ArrayList<String> AL2){   
    ArrayList<String> empty = new ArrayList<String>();
    ArrayList<String> empty1 = new ArrayList<String>();
    if (AL1.isEmpty()){
        return AL1;
    }
    else{
        String s = AL1.get(0);
        if(AL2.contains(s))
            empty.add(s);


            empty1.addAll(AL1.subList(1, AL1.size()));
            empty.addAll(intersection(empty1, AL2));
            return empty;
    }
}

我希望输出看起来像这样:例如,

 [a, b, c] intersect [b, c, d, e] = [b, c]

上面的代码给了我这个输出,但我想知道如何使这个代码更容易理解。

5 个答案:

答案 0 :(得分:2)

通过这样写,你可以更容易理解:

/**
 * Computes the intersection of two Lists of Strings, returning it as a new ArrayList of Strings
 *
 * @param list1 one of the Lists from which to compute an intersection
 * @param list2 one of the Lists from which to compute an intersection
 *
 * @return a new ArrayList of Strings containing the intersection of list1 and list2
 */
public ArrayList<String> intersection( List<String> list1, List<String> list2) {   
    ArrayList<String> result = new ArrayList<String>(list1);

    result.retainAll(list2);

    return result;
}

答案 1 :(得分:1)

Java集合已经通过retainAll调用支持此功能。交集发生在适当的位置,而不是返回一个新的集合,这就是为什么如果要保留原始list1,必须创建一个新的ArrayList。如果修改了调用对象,则retainAll返回一个布尔值

ArrayList<String> list1 = new ArrayList<String>();
list1.add("A");
list1.add("B");
list1.add("C");
ArrayList<String> list2 = new ArrayList<String>();
list2.add("D");
list2.add("B");
list2.add("C");
ArrayList<String> intersection = new ArrayList<String>(list1);
intersection.retainAll(list2);
for(String s: intersection){
    System.out.println(s);
}

输出:

B
C

答案 2 :(得分:0)

public ArrayList<String> intersection( ArrayList<String> AL1, ArrayList<String> AL2){   
    ArrayList<String> returnArrayList = new ArrayList<String>();
    for(String test : AL1)
    {
        if(!returnArrayList.contains(test))
        {
            if(AL2.contains(test))
            {
                returnArrayList.add(test);
            }
        }
    }
    return returnArrayList;
}

您可以使用循环而不是递归。

答案 3 :(得分:0)

如果您对依赖项没问题,我建议您查看apache commons集合(http://commons.apache.org/proper/commons-collections/release_4_0.html)。

对于您的具体用途,它将是CollectionUtils(https://commons.apache.org/proper/commons-collections/apidocs/org/apache/commons/collections4/CollectionUtils.html

的方法交集

答案 4 :(得分:0)