gpt4 book ai didi

java - 如何从二维数组列表中的特定位置提取整数?

转载 作者:行者123 更新时间:2023-12-02 07:59:49 24 4
gpt4 key购买 nike

如果我有一个由ArrayList组成的ArrayList,则说“biglist”。

[[1,2,3],[4,3,2],[5,1,2],[6,4,7],[7,1,2]]

我如何计算第一行中的所有 1(即 1 4 5 6 7,总共一个 1),第二行等也是如此?

我在这方面失败了,因此我们将不胜感激任何帮助或指导。

最佳答案

ArrayList<ArrayList<Integer>> list = new ArrayList<ArrayList<Integer>>();
//...add your integer to the list

ArrayList<Integer> newList = new ArrayList<Integer>();
for(int i = 0; i < list.size(); i++)
{
if(i == 2 || i == 3) //for instance if you want to exclude certain sublists in your list
continue;

ArrayList<Integer> ints = list.get(i);
if(ints.size() > 0)
newList.add(ints.get(0 /* 0 or whatever part of inner list you want */));
}

关于java - 如何从二维数组列表中的特定位置提取整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9063233/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com