java 用子列表替换列表

发布于 2024-12-10 09:22:52 字数 468 浏览 1 评论 0原文

我有一个列表

ArrayList list = new ArrayList(Arrays.asList(1,2,3,4,5,3,4,2,4,5,3,10));

我还有另一个子列表

ArrayList sublist = new ArrayList(Arrays.asList(4,5,3));

我正在寻找要替换的功能 列表中的子列表

与另一个子列表,

ArrayList sublist = new ArrayList(Arrays.asList(100,100)));

因此在查找和替换之后,新列表应该变成:

list = (1,2,3,100,100,4,2,100,100,10);

我在java中找不到这个列表的任何api。

I have a list

ArrayList list = new ArrayList(Arrays.asList(1,2,3,4,5,3,4,2,4,5,3,10));

And I have another sublist

ArrayList sublist = new ArrayList(Arrays.asList(4,5,3));

I was looking around for a functionality to replace
the sublist inside list

with another sublist

ArrayList sublist = new ArrayList(Arrays.asList(100,100)));

so after the find and replace , the new list should become :

list = (1,2,3,100,100,4,2,100,100,10);

I could not find any api for this one in java.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

来日方长 2024-12-17 09:22:52

不确定是否存在任何 api 可以执行此操作,但您可以利用 Java 中的 List 接口。

如果你结合使用
包含全部(集合 c)
如果此列表包含指定集合的​​所有元素,则返回 true。

删除全部(集合c)
从此列表中删除指定集合中包含的所有元素(可选操作)。

addAll(int 索引, 集合 c)
将指定集合中的所有元素插入到此列表的指定位置(可选操作)。

我认为你可以轻松完成你需要的事情。

看看这里:
http://download.oracle.com/javase/6 /docs/api/java/util/List.html

Not sure if there exists any api for doing this or not, but what you could do is take advantage of the List interface in Java.

If you combine the use of
containsAll(Collection c)
Returns true if this list contains all of the elements of the specified collection.

removeAll(Collection c)
Removes from this list all of its elements that are contained in the specified collection (optional operation).

and

addAll(int index, Collection c)
Inserts all of the elements in the specified collection into this list at the specified position (optional operation).

I think you can easily accomplish what you need.

Take a look here:
http://download.oracle.com/javase/6/docs/api/java/util/List.html

情独悲 2024-12-17 09:22:52

如果您将子列表创建为 listtrue 子列表,例如使用 List#subList(),然后(非结构性)更改为子列表将是反映在列表中。

List<Integer> list = Lists.newArrayList(1, 2, 3, 4, 5, 3, 4, 2, 4, 5, 3, 10);
List<Integer> sublist = list.subList(3, 6);

for (int i=0; i<sublist.size(); i++)
{
    sublist.set(i, 100);
}

System.out.println(sublist);
// prints 100, 100, 100
System.out.println(list);
// prints 1, 2, 3, 100, 100, 100, 4, 2, 4, 5, 3, 10

演示:http://ideone.com/ljvd0


Lists.newArrayList(...) 来自 谷歌番石榴

If you create the sublist as a true sublist of list, e.g. using List#subList(), then (non-structural) changes made to sublist will be reflected in list.

List<Integer> list = Lists.newArrayList(1, 2, 3, 4, 5, 3, 4, 2, 4, 5, 3, 10);
List<Integer> sublist = list.subList(3, 6);

for (int i=0; i<sublist.size(); i++)
{
    sublist.set(i, 100);
}

System.out.println(sublist);
// prints 100, 100, 100
System.out.println(list);
// prints 1, 2, 3, 100, 100, 100, 4, 2, 4, 5, 3, 10

Demo: http://ideone.com/ljvd0


Lists.newArrayList(...) comes from Google Guava.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文