我有一个整数数组列表。我需要找到它们之间的共同元素。我能想到的是Common elements in two lists
中列出的内容的扩展Example would be
[1,3,5],
[1,6,7,9,3],
[1,3,10,11]
should result in [1,3]
数组中也没有重复项。
有没有直接的方法来做到这一点?
答案 0 :(得分:16)
您可以将列表转换为集合,然后使用Set.retainAll
方法在不同集合之间进行交集。
一旦你与所有集相交,你就会得到公共元素,你可以将结果集转换回列表。
答案 1 :(得分:10)
您可以使用Guava提供的Set的交集方法,这是一个小例子:
public <T> Set<T> intersection(List<T>... list) {
Set<T> result = Sets.newHashSet(list[0]);
for (List<T> numbers : list) {
result = Sets.intersection(result, Sets.newHashSet(numbers));
}
return result;
}
希望能帮到你
答案 2 :(得分:5)
我们可以使用retainAll
method of Collections。我使用第一个数组列表初始化了我的commons
arraylist,并为每个剩余的arraylists调用了它。
List<List<Integer>> lists = new ArrayList<List<Integer>>();
lists.add(new ArrayList<Integer>(Arrays.asList(1, 3, 5)));
lists.add(new ArrayList<Integer>(Arrays.asList(1, 6, 7, 9, 3)));
lists.add(new ArrayList<Integer>(Arrays.asList(1, 3, 10, 11)));
List<Integer> commons = new ArrayList<Integer>();
commons.addAll(lists.get(1));
for (ListIterator<List<Integer>> iter = lists.listIterator(1); iter.hasNext(); ) {
commons.retainAll(iter.next());
}
System.out.println(commons);
System.out.println(lists.get(1));
答案 3 :(得分:1)
如果您正在寻找一个返回所有列表中存在的元素的函数,
然后是直接的&amp;简单的方法是建立统计数据{&lt;成员,出现&gt; }此处的条件在同一列表中没有重复,
private Set<Integer> getCommonElements(ArrayList<Integer[]> idList)
{
MapList<Integer,Short> stat = new MapList<Integer,Short>();
// Here we count how many times each value occur
for (int i = 0; i < idList.size(); i++)
{
for (int j = 0; j < idList.get(i).size; j++)
{
if (stat.containsKey(idList.get(i)[j]))
{
stat.set(idList.get(i)[j], stat.get(idList.get(i)[j])+1);
}
else
{
stat.add(idList.get(i)[j], 1);
}
}
}
// Here we only keep value that occured in all lists
for (int i = 0; i < stat.size(); i++)
{
if (stat.get(i) < idList.size())
{
stat.remove(i);
i--;
}
}
return stat.keySet();
}
答案 4 :(得分:1)
使用Java 8
ArrayList保留 = list1.stream()。filter(list2 :: contains).filter(list3 :: contains).collect(toList())
答案 5 :(得分:0)
public class ArrayListImpl{
public static void main(String s[]){
ArrayList<Integer> al1=new ArrayList<Integer>();
al1.add(21);al1.add(23);al1.add(25);al1.add(26);
ArrayList<Integer> al2=new ArrayList<Integer>();
al2.add(15);al2.add(16);al2.add(23);al2.add(25);
ArrayList Al3=new ArrayList<Integer>();
al3.addAll(al1);
System.out.println("Al3 Elements :"+al3);
al3.retainAll(al2); //Keeps common elements of (al1 & al2) & removes remaining elements
System.out.println("Common Elements Between Two Array List:"+al3);
}
}
答案 6 :(得分:0)
public class commonvalue {
Public static void MyMethod(){
Set<integer> S1 = new set<integer>{1,3,5};
Set<integer> S2 = new set<integer>{1,6,7,9,3};
Set<integer> S3 = new set<integer>{1,3,10,11};
s2.retainall(s1);
s3.retainall(s2);
system.debug(s3);
}
}